RouteProvider::$tableName

The name of the SQL table from which to read the routes. Type: string File core/lib/Drupal/Core/Routing/RouteProvider.php, line 36 Class RouteProvider A Route Provider front-end for all Drupal-stored routes. Namespace Drupal\Core\Routing Code protected $tableName;

Container::set

public Container::set($id, $service, $scope = ContainerInterface::SCOPE_CONTAINER) File core/lib/Drupal/Component/DependencyInjection/Container.php, line 364 Class Container Provides a container optimized for Drupal's needs. Namespace Drupal\Component\DependencyInjection Code public function set($id, $service, $scope = ContainerInterface::SCOPE_CONTAINER) { if (!in_array($scope, array('container', 'request')) || ('request' === $scope && 'request' !== $id)) { @trigger_erro

ContentEntityStorageBase::loadRevision

public ContentEntityStorageBase::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/Entity/ContentEntityStorageBase.php, line 218 Class ContentEntityStorageBase Base class for content entity storage handlers. Namespace Drupal\Core\Entity Code publ

Select::$prepared

Indicates if preExecute() has already been called. Type: bool File core/lib/Drupal/Core/Database/Query/Select.php, line 113 Class Select Query builder for SELECT statements. Namespace Drupal\Core\Database\Query Code protected $prepared = FALSE;

SettingsCommand::render

public SettingsCommand::render() Implements Drupal\Core\Ajax\CommandInterface:render(). Overrides CommandInterface::render File core/lib/Drupal/Core/Ajax/SettingsCommand.php, line 55 Class SettingsCommand AJAX command for adjusting Drupal's JavaScript settings. Namespace Drupal\Core\Ajax Code public function render() { return array( 'command' => 'settings', 'settings' => $this->settings, 'merge' => $this->merge, ); }

DbCommandBase::configure

protected DbCommandBase::configure() Configures the current command. Overrides Command::configure File core/lib/Drupal/Core/Command/DbCommandBase.php, line 18 Class DbCommandBase Base command that abstracts handling of database connection arguments. Namespace Drupal\Core\Command Code protected function configure() { $this->addOption('database', NULL, InputOption::VALUE_OPTIONAL, 'The database connection name to use.', 'default') ->addOption('database-url', 'db-url', InputOp

EntityReferenceSelection::$label

The human-readable name of the selection plugin. Type: \Drupal\Core\Annotation\Translation Related topics Annotation for translatable text Describes how to put translatable UI text into annotations. File core/lib/Drupal/Core/Entity/Annotation/EntityReferenceSelection.php, line 37 Class EntityReferenceSelection Defines an EntityReferenceSelection plugin annotation object. Namespace Drupal\Core\Entity\Annotation Code public $label;

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

hook_toolbar

hook_toolbar() Add items to the toolbar menu. The toolbar is a container for administrative and site-global interactive components. The toolbar provides a common styling for items denoted by the .toolbar-tab class. The toolbar provides a construct called a 'tray'. The tray is a container for content. The tray may be associated with a toggle in the administration bar. The toggle shows or hides the tray and is optimized for small and large screens. To create this association, hook_toolbar() retur

TermStorage::$trees

Array of loaded trees keyed by a cache id matching tree arguments. Type: array File core/modules/taxonomy/src/TermStorage.php, line 60 Class TermStorage Defines a Controller class for taxonomy terms. Namespace Drupal\taxonomy Code protected $trees = array();