RdfMapping::$id

Unique ID for the config entity. Type: string File core/modules/rdf/src/Entity/RdfMapping.php, line 35 Class RdfMapping Config entity for working with RDF mappings. Namespace Drupal\rdf\Entity Code protected $id;

LoggerChannel::MAX_CALL_DEPTH

Maximum call depth to self::log() for a single log message. It's very easy for logging channel code to call out to other library code that will create log messages. In that case, we will recurse back in to LoggerChannel::log() multiple times while processing a single originating message. To prevent infinite recursion, we track the call depth and bail out at LoggerChannel::MAX_CALL_DEPTH iterations. File core/lib/Drupal/Core/Logger/LoggerChannel.php, line 28 Class LoggerChannel Defines a lo

BlockForm::$contextRepository

The context repository service. Type: \Drupal\Core\Plugin\Context\ContextRepositoryInterface File core/modules/block/src/BlockForm.php, line 72 Class BlockForm Provides form for block instance forms. Namespace Drupal\block Code protected $contextRepository;

NodeAdminRouteSubscriber

Sets the _admin_route for specific node-related routes. Hierarchy class \Drupal\Core\Routing\RouteSubscriberBase implements EventSubscriberInterfaceclass \Drupal\node\EventSubscriber\NodeAdminRouteSubscriber File core/modules/node/src/EventSubscriber/NodeAdminRouteSubscriber.php, line 12 Namespace Drupal\node\EventSubscriber Members Name Modifiers Type Description NodeAdminRouteSubscriber::$configFactory protected property The config factory. NodeAdminRouteSubscriber:

Entity CRUD, editing, and view hooks

Hooks used in various entity operations. Entity create, read, update, and delete (CRUD) operations are performed by entity storage classes; see the Entity API topic for more information. Most entities use or extend the default classes: \Drupal\Core\Entity\Sql\SqlContentEntityStorage for content entities, and \Drupal\Core\Config\Entity\ConfigEntityStorage for configuration entities. For these entities, there is a set of hooks that is invoked for each CRUD operation, which module developers can i

SelectExtender::escapeLike

public SelectExtender::escapeLike($string) Escapes characters that work as wildcard characters in a LIKE pattern. Parameters $string: The string to escape. Return value string The escaped string. Overrides SelectInterface::escapeLike See also \Drupal\Core\Database\Connection::escapeLike() File core/lib/Drupal/Core/Database/Query/SelectExtender.php, line 268 Class SelectExtender The base extender class for Select queries. Namespace Drupal\Core\Database\Query Code public function esca

FieldConfigStorageBase

Base storage class for field config entities. Hierarchy class \Drupal\Core\Entity\EntityHandlerBase uses DependencySerializationTrait, StringTranslationTraitclass \Drupal\Core\Entity\EntityStorageBase implements EntityHandlerInterface, EntityStorageInterfaceclass \Drupal\Core\Config\Entity\ConfigEntityStorage implements ConfigEntityStorageInterface, ImportableEntityStorageInterfaceclass \Drupal\Core\Field\FieldConfigStorageBase File core/lib/Drupal/Core/Field/FieldConfigStorageBase.php, l

PrivateKey::get

public PrivateKey::get() Gets the private key. Return value string The private key. File core/lib/Drupal/Core/PrivateKey.php, line 36 Class PrivateKey Manages the Drupal private key. Namespace Drupal\Core Code public function get() { if (!$key = $this->state->get('system.private_key')) { $key = $this->create(); $this->set($key); } return $key; }

VocabularyResetForm

Provides confirmation form for resetting a vocabulary to alphabetical order. Hierarchy class \Drupal\Core\Form\FormBase implements ContainerInjectionInterface, FormInterface uses DependencySerializationTrait, LoggerChannelTrait, LinkGeneratorTrait, RedirectDestinationTrait, UrlGeneratorTrait, StringTranslationTraitclass \Drupal\Core\Entity\EntityForm implements EntityFormInterfaceclass \Drupal\Core\Entity\EntityConfirmFormBase implements ConfirmFormInterfaceclass \Drupal\taxonomy\Form\Vocabular

ConfigEntityBase::set

public ConfigEntityBase::set($property_name, $value) Sets the value of a property. Parameters string $property_name: The name of the property that should be set. mixed $value: The value the property should be set to. Return value $this Overrides ConfigEntityInterface::set File core/lib/Drupal/Core/Config/Entity/ConfigEntityBase.php, line 164 Class ConfigEntityBase Defines a base configuration entity class. Namespace Drupal\Core\Config\Entity Code public function set($property_name, $