UserPermissionsRoleSpecificForm::$userRole

The specific role for this form. Type: \Drupal\user\RoleInterface File core/modules/user/src/Form/UserPermissionsRoleSpecificForm.php, line 18 Class UserPermissionsRoleSpecificForm Provides the user permissions administration form for a specific role. Namespace Drupal\user\Form Code protected $userRole;

ConfigNamesMapper::getConfigNames

public ConfigNamesMapper::getConfigNames() Returns an array of configuration names for the mapper. Return value array An array of configuration names for the mapper. Overrides ConfigMapperInterface::getConfigNames File core/modules/config_translation/src/ConfigNamesMapper.php, line 348 Class ConfigNamesMapper Configuration mapper base implementation. Namespace Drupal\config_translation Code public function getConfigNames() { return $this->pluginDefinition['names']; }

RenderEvents

Defines events for the render system. Hierarchy class \Drupal\Core\Render\RenderEvents File core/lib/Drupal/Core/Render/RenderEvents.php, line 8 Namespace Drupal\Core\Render Members Name Modifiers Type Description RenderEvents::SELECT_PAGE_DISPLAY_VARIANT constant Name of the event when selecting a page display variant to use.

BrokenPostRequestException::$size

The maximum upload size. Type: string File core/lib/Drupal/Core/Form/Exception/BrokenPostRequestException.php, line 17 Class BrokenPostRequestException Defines an exception used, when the POST HTTP body is broken. Namespace Drupal\Core\Form\Exception Code protected $size;

ToolbarItem::preRenderToolbarItem

public static ToolbarItem::preRenderToolbarItem($element) Provides markup for associating a tray trigger with a tray element. A tray is a responsive container that wraps renderable content. Trays present content well on small and large screens alike. Parameters array $element: A renderable array. Return value array A renderable array. File core/modules/toolbar/src/Element/ToolbarItem.php, line 46 Class ToolbarItem Provides a toolbar item that is wrapped in markup for common styling. Na

CacheBackendInterface::invalidateMultiple

public CacheBackendInterface::invalidateMultiple(array $cids) Marks cache items as invalid. Invalid items may be returned in later calls to get(), if the $allow_invalid argument is TRUE. Parameters string[] $cids: An array of cache IDs to invalidate. See also \Drupal\Core\Cache\CacheBackendInterface::deleteMultiple() \Drupal\Core\Cache\CacheBackendInterface::invalidate() \Drupal\Core\Cache\CacheBackendInterface::invalidateAll() File core/lib/Drupal/Core/Cache/CacheBackendInterface.php, line 1

ConfigEntityStorage::loadRevision

public ConfigEntityStorage::loadRevision($revision_id) Load a specific entity revision. Parameters int|string $revision_id: The revision id. Return value \Drupal\Core\Entity\EntityInterface|null The specified entity revision or NULL if not found. Overrides EntityStorageInterface::loadRevision File core/lib/Drupal/Core/Config/Entity/ConfigEntityStorage.php, line 131 Class ConfigEntityStorage Defines the storage class for configuration entities. Namespace Drupal\Core\Config\Entity Code

FieldStorageDefinitionInterface::getTargetEntityTypeId

public FieldStorageDefinitionInterface::getTargetEntityTypeId() Returns the ID of the entity type the field is attached to. This method should not be confused with EntityInterface::getEntityTypeId() (configurable fields are config entities, and thus implement both interfaces): FieldStorageDefinitionInterface::getTargetEntityTypeId() answers "as a field storage, which entity type are you attached to?". EntityInterface::getEntityTypeId() answers "as a (config) entity, what is your own entity typ

ConfigMapperInterface::getWeight

public ConfigMapperInterface::getWeight() Returns the weight of the mapper. Return value int The weight of the mapper. File core/modules/config_translation/src/ConfigMapperInterface.php, line 186 Class ConfigMapperInterface Defines an interface for configuration mapper. Namespace Drupal\config_translation Code public function getWeight();

hook_node_update_index

hook_node_update_index(\Drupal\node\NodeInterface $node) Act on a node being indexed for searching. This hook is invoked during search indexing, after loading, and after the result of rendering is added as $node->rendered to the node object. Parameters \Drupal\node\NodeInterface $node: The node being indexed. Return value string Additional node information to be indexed. Related topics Entity CRUD, editing, and view hooks Hooks used in various entity operations. Hooks Define functions that