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.

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

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;

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;

Comment::getOwnerId

public Comment::getOwnerId() Returns the entity owner's user ID. Return value int|null The owner user ID, or NULL in case the user ID field has not been set on the entity. Overrides EntityOwnerInterface::getOwnerId File core/modules/comment/src/Entity/Comment.php, line 536 Class Comment Defines the comment entity class. Namespace Drupal\comment\Entity Code public function getOwnerId() { return $this->get('uid')->target_id; }

CommentController::__construct

public CommentController::__construct(HttpKernelInterface $http_kernel, CommentManagerInterface $comment_manager, EntityManagerInterface $entity_manager) Constructs a CommentController object. Parameters \Symfony\Component\HttpKernel\HttpKernelInterface $http_kernel: HTTP kernel to handle requests. \Drupal\comment\CommentManagerInterface $comment_manager: The comment manager service. \Drupal\Core\Entity\EntityManagerInterface $entity_manager: The entity manager service. File core/modules/comme

SearchQuery::parseSearchExpression

protected SearchQuery::parseSearchExpression() Parses the search query into SQL conditions. Sets up the following variables: $this->keys $this->words $this->conditions $this->simple $this->matches File core/modules/search/src/SearchQuery.php, line 224 Class SearchQuery Search query extender and helper functions. Namespace Drupal\search Code protected function parseSearchExpression() { // Matches words optionally prefixed by a - sign. A word in this case is // some

content_translation_help

content_translation_help($route_name, RouteMatchInterface $route_match) Implements hook_help(). File core/modules/content_translation/content_translation.module, line 21 Allows entities to be translated into different languages. Code function content_translation_help($route_name, RouteMatchInterface $route_match) { switch ($route_name) { case 'help.page.content_translation': $output = ''; $output .= '<h3>' . t('About') . '</h3>'; $output .= '<p>' . t(

UserPasswordForm

Provides a user password reset form. Hierarchy class \Drupal\Core\Form\FormBase implements ContainerInjectionInterface, FormInterface uses DependencySerializationTrait, LoggerChannelTrait, LinkGeneratorTrait, RedirectDestinationTrait, UrlGeneratorTrait, StringTranslationTraitclass \Drupal\user\Form\UserPasswordForm File core/modules/user/src/Form/UserPasswordForm.php, line 15 Namespace Drupal\user\Form Members Name Modifiers Type Description DependencySerializationTrait::$_se