Container::__construct

public Container::__construct(array $container_definition = array()) Constructs a new Container instance. Parameters array $container_definition: An array containing the following keys: aliases: The aliases of the container. parameters: The parameters of the container. services: The service definitions of the container. frozen: Whether the container definition came from a frozen container builder or not. machine_format: Whether this container definition uses the optimized machine-readable

DatabaseCacheTagsChecksum::$invalidatedTags

A list of tags that have already been invalidated in this request. Used to prevent the invalidation of the same cache tag multiple times. Type: array File core/lib/Drupal/Core/Cache/DatabaseCacheTagsChecksum.php, line 34 Class DatabaseCacheTagsChecksum Cache tags invalidations checksum implementation that uses the database. Namespace Drupal\Core\Cache Code protected $invalidatedTags = array();

ActionFormBase::validateForm

public ActionFormBase::validateForm(array &$form, FormStateInterface $form_state) Form validation handler. Parameters array $form: An associative array containing the structure of the form. \Drupal\Core\Form\FormStateInterface $form_state: The current state of the form. Overrides FormBase::validateForm File core/modules/action/src/ActionFormBase.php, line 121 Class ActionFormBase Provides a base form for action forms. Namespace Drupal\action Code public function validateForm(array

UserStorageSchema::getSharedTableFieldSchema

protected UserStorageSchema::getSharedTableFieldSchema(FieldStorageDefinitionInterface $storage_definition, $table_name, array $column_mapping) Gets the schema for a single field definition. Entity types may override this method in order to optimize the generated schema for given field. While all optimizations that apply to a single field have to be added here, all cross-field optimizations should be via SqlContentEntityStorageSchema::getEntitySchema() instead; e.g., an index spanning multiple

outside_in_theme

outside_in_theme() Implements hook_theme(). File core/modules/outside_in/outside_in.module, line 72 Allows configuring blocks and other configuration from the site front-end. Code function outside_in_theme() { return [ 'outside_in_page_wrapper' => [ 'variables' => ['children' => NULL], ], ]; }

ConfirmDeleteMultiple::$commentStorage

The comment storage. Type: \Drupal\comment\CommentStorageInterface File core/modules/comment/src/Form/ConfirmDeleteMultiple.php, line 22 Class ConfirmDeleteMultiple Provides the comment multiple delete confirmation form. Namespace Drupal\comment\Form Code protected $commentStorage;

ViewsData::$moduleHandler

Stores a module manager to invoke hooks. Type: \Drupal\Core\Extension\ModuleHandlerInterface File core/modules/views/src/ViewsData.php, line 81 Class ViewsData Class to manage and lazy load cached views data. Namespace Drupal\views Code protected $moduleHandler;

ContentEntityForm::validateForm

public ContentEntityForm::validateForm(array &$form, FormStateInterface $form_state) Button-level validation handlers are highly discouraged for entity forms, as they will prevent entity validation from running. If the entity is going to be saved during the form submission, this method should be manually invoked from the button-level validation handler, otherwise an exception will be thrown. Overrides FormBase::validateForm File core/lib/Drupal/Core/Entity/ContentEntityForm.php, line 91

RenderContext::bubble

public RenderContext::bubble() Bubbles the stack. Whenever another level in the render array has been rendered, the stack must be bubbled, to merge its rendering metadata with that of the parent element. File core/lib/Drupal/Core/Render/RenderContext.php, line 41 Class RenderContext The render context: a stack containing bubbleable rendering metadata. Namespace Drupal\Core\Render Code public function bubble() { // If there's only one frame on the stack, then this is the root call, an

ContentEntityStorageBase::finalizePurge

public ContentEntityStorageBase::finalizePurge(FieldStorageDefinitionInterface $storage_definition) Performs final cleanup after all data of a field has been purged. Parameters \Drupal\Core\Field\FieldStorageDefinitionInterface $storage_definition: The field being purged. Overrides DynamicallyFieldableEntityStorageInterface::finalizePurge File core/lib/Drupal/Core/Entity/ContentEntityStorageBase.php, line 213 Class ContentEntityStorageBase Base class for content entity storage handlers.