SqlContentEntityStorageSchema::processBaseTable

protected SqlContentEntityStorageSchema::processBaseTable(ContentEntityTypeInterface $entity_type, array &$schema) Processes the gathered schema for a base table. Parameters \Drupal\Core\Entity\ContentEntityTypeInterface $entity_type: The entity type. array $schema: The table schema, passed by reference. Return value array A partial schema array for the base table. File core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorageSchema.php, line 1002 Class SqlContentEntityStorageSchema De

Url::$accessManager

The access manager Type: \Drupal\Core\Access\AccessManagerInterface File core/lib/Drupal/Core/Url.php, line 39 Class Url Defines an object that holds information about a URL. Namespace Drupal\Core Code protected $accessManager;

TrustedHostsRequestFactory::__construct

public TrustedHostsRequestFactory::__construct($host) Creates a new TrustedHostsRequestFactory. Parameters string $host: The host of the main request. File core/lib/Drupal/Core/Http/TrustedHostsRequestFactory.php, line 35 Class TrustedHostsRequestFactory Provides a request factory for requests using host verification. Namespace Drupal\Core\Http Code public function __construct($host) { $this->host = (string) $host; }

MenuLinkContentForm::$menuParentSelector

The parent form selector service. Type: \Drupal\Core\Menu\MenuParentFormSelectorInterface File core/modules/menu_link_content/src/Form/MenuLinkContentForm.php, line 30 Class MenuLinkContentForm Provides a form to add/update content menu links. Namespace Drupal\menu_link_content\Form Code protected $menuParentSelector;

ConfigEntityStorageInterface::updateFromStorageRecord

public ConfigEntityStorageInterface::updateFromStorageRecord(ConfigEntityInterface $entity, array $values) Updates a configuration entity from storage values. Allows the configuration entity storage to massage storage values before updating an entity. Parameters ConfigEntityInterface $entity: The configuration entity to update. array $values: The array of values from the configuration storage. Return value ConfigEntityInterface The configuration entity. See also \Drupal\Core\Entity\EntitySto

SystemConfigSubscriber::getSubscribedEvents

public static SystemConfigSubscriber::getSubscribedEvents() Returns an array of event names this subscriber wants to listen to. The array keys are event names and the value can be: The method name to call (priority defaults to 0) An array composed of the method name to call and the priority An array of arrays composed of the method names to call and respective priorities, or 0 if unset For instance: array('eventName' => 'methodName') array('eventName' => array('methodName', $priority)

tracker.module

Tracks recent content posted by a user or users. File core/modules/tracker/tracker.module Functions Name Description tracker_comment_delete Implements hook_ENTITY_TYPE_delete() for comment entities. tracker_comment_insert Implements hook_ENTITY_TYPE_insert() for comment entities. tracker_comment_update Implements hook_ENTITY_TYPE_update() for comment entities. tracker_cron Implements hook_cron(). tracker_help Implements hook_help(). tracker_node_insert Implements h

CronController::$cron

The cron service. Type: \Drupal\Core\CronInterface File core/modules/system/src/CronController.php, line 20 Class CronController Controller for Cron handling. Namespace Drupal\system Code protected $cron;

KeyValueDatabaseExpirableFactory::garbageCollection

public KeyValueDatabaseExpirableFactory::garbageCollection() Deletes expired items. File core/lib/Drupal/Core/KeyValueStore/KeyValueDatabaseExpirableFactory.php, line 60 Class KeyValueDatabaseExpirableFactory Defines the key/value store factory for the database backend. Namespace Drupal\Core\KeyValueStore Code public function garbageCollection() { $this->connection->delete('key_value_expire') ->condition('expire', REQUEST_TIME, '<') ->execute(); }

EntityType::getGroupLabel

public EntityType::getGroupLabel() Gets the human-readable name of the entity type group. Return value string Overrides EntityTypeInterface::getGroupLabel File core/lib/Drupal/Core/Entity/EntityType.php, line 801 Class EntityType Provides an implementation of an entity type and its metadata. Namespace Drupal\Core\Entity Code public function getGroupLabel() { return !empty($this->group_label) ? $this->group_label : $this->t('Other', array(), array('context' => 'Entity typ