MenuLinkManager::getFactory

protected MenuLinkManager::getFactory() Gets the plugin factory. Return value \Drupal\Component\Plugin\Factory\FactoryInterface File core/lib/Drupal/Core/Menu/MenuLinkManager.php, line 154 Class MenuLinkManager Manages discovery, instantiation, and tree building of menu link plugins. Namespace Drupal\Core\Menu Code protected function getFactory() { if (!isset($this->factory)) { $this->factory = new ContainerFactory($this); } return $this->factory; }

ConfirmDeleteMultiple::getQuestion

public ConfirmDeleteMultiple::getQuestion() Returns the question to ask the user. Return value string The form question. The page title will be set to this value. Overrides ConfirmFormInterface::getQuestion File core/modules/comment/src/Form/ConfirmDeleteMultiple.php, line 60 Class ConfirmDeleteMultiple Provides the comment multiple delete confirmation form. Namespace Drupal\comment\Form Code public function getQuestion() { return $this->t('Are you sure you want to delete these c

HtmlRenderer::$displayVariantManager

The display variant manager. Type: \Drupal\Component\Plugin\PluginManagerInterface File core/lib/Drupal/Core/Render/MainContent/HtmlRenderer.php, line 45 Class HtmlRenderer Default main content renderer for HTML requests. Namespace Drupal\Core\Render\MainContent Code protected $displayVariantManager;

Feed::preDelete

public static Feed::preDelete(EntityStorageInterface $storage, array $entities) Acts on entities before they are deleted and before hooks are invoked. Used before the entities are deleted and before invoking the delete hook. Parameters \Drupal\Core\Entity\EntityStorageInterface $storage: The entity storage object. \Drupal\Core\Entity\EntityInterface[] $entities: An array of entities. Overrides Entity::preDelete File core/modules/aggregator/src/Entity/Feed.php, line 101 Class Feed Defines

book-navigation.html.twig

Default theme implementation to navigate books. Presented under nodes that are a part of book outlines. Available variables: tree: The immediate children of the current node rendered as an unordered list. current_depth: Depth of the current node within the book outline. Provided for context. prev_url: URL to the previous node. prev_title: Title of the previous node. parent_url: URL to the parent node. parent_title: Title of the parent node. Not printed by default. Provided as an option.

system.install

Install, update and uninstall functions for the system module. File core/modules/system/system.install Functions Name Description system_install Implements hook_install(). system_requirements Implements hook_requirements(). system_schema Implements hook_schema(). system_update_8001 Change two fields on the default menu link storage to be serialized data. system_update_8002 Removes the system.filter configuration. system_update_8003 Change the index on the {router}

FieldItemInterface::getLangcode

public FieldItemInterface::getLangcode() Gets the langcode of the field values held in the object. Return value string The langcode. File core/lib/Drupal/Core/Field/FieldItemInterface.php, line 104 Class FieldItemInterface Interface for entity field items. Namespace Drupal\Core\Field Code public function getLangcode();

ViewExecutable::$total_rows

The total number of rows returned from the query. Type: int File core/modules/views/src/ViewExecutable.php, line 108 Class ViewExecutable Represents a view as a whole. Namespace Drupal\views Code public $total_rows = NULL;

FieldConfig::isDeleted

public FieldConfig::isDeleted() Gets the deleted flag of the field. Return value bool Returns TRUE if the field is deleted. Overrides FieldConfigInterface::isDeleted File core/modules/field/src/Entity/FieldConfig.php, line 275 Class FieldConfig Defines the Field entity. Namespace Drupal\field\Entity Code public function isDeleted() { return $this->deleted; }

Cache::getBins

public static Cache::getBins() Gets all cache bin services. Return value \Drupal\Core\Cache\CacheBackendInterface[] An array of cache backend objects keyed by cache bins. File core/lib/Drupal/Core/Cache/Cache.php, line 154 Class Cache Helper methods for cache. Namespace Drupal\Core\Cache Code public static function getBins() { $bins = array(); $container = \Drupal::getContainer(); foreach ($container->getParameter('cache_bins') as $service_id => $bin) { $bins[$bin] = $