RouteSubscriber::$viewsDisplayPairs

Stores a list of view,display IDs which haven't be used in the alter event. Type: array File core/modules/views/src/EventSubscriber/RouteSubscriber.php, line 31 Class RouteSubscriber Builds up the routes of all views. Namespace Drupal\views\EventSubscriber Code protected $viewsDisplayPairs;

HtmlTag::preRenderHtmlTag

public static HtmlTag::preRenderHtmlTag($element) Pre-render callback: Renders a generic HTML tag with attributes into #markup. Parameters array $element: An associative array containing: #tag: The tag name to output. Typical tags added to the HTML HEAD: meta: To provide meta information, such as a page refresh. link: To refer to stylesheets and other contextual information. script: To load JavaScript. The value of #tag is escaped. #attributes: (optional) An array of HTML attributes to a

FieldItemListInterface::__unset

public FieldItemListInterface::__unset($property_name) Magic method: Unsets a property of the first field item. See also \Drupal\Core\Field\FieldItemInterface::__isset() File core/lib/Drupal/Core/Field/FieldItemListInterface.php, line 125 Class FieldItemListInterface Interface for fields, being lists of field items. Namespace Drupal\Core\Field Code public function __unset($property_name);

ConfigFactory::$typedConfigManager

The typed config manager. Type: \Drupal\Core\Config\TypedConfigManagerInterface File core/lib/Drupal/Core/Config/ConfigFactory.php, line 53 Class ConfigFactory Defines the configuration object factory. Namespace Drupal\Core\Config Code protected $typedConfigManager;

ConfigFactory::onConfigSave

public ConfigFactory::onConfigSave(ConfigCrudEvent $event) Updates stale static cache entries when configuration is saved. Parameters ConfigCrudEvent $event: The configuration event. File core/lib/Drupal/Core/Config/ConfigFactory.php, line 337 Class ConfigFactory Defines the configuration object factory. Namespace Drupal\Core\Config Code public function onConfigSave(ConfigCrudEvent $event) { // Ensure that the static cache contains up to date configuration objects by // replacing

RouteSubscriber::reset

public RouteSubscriber::reset() Resets the internal state of the route subscriber. File core/modules/views/src/EventSubscriber/RouteSubscriber.php, line 70 Class RouteSubscriber Builds up the routes of all views. Namespace Drupal\views\EventSubscriber Code public function reset() { $this->viewsDisplayPairs = NULL; }

FileStorage::getFileExtension

public static FileStorage::getFileExtension() Returns the file extension used by the file storage for all configuration files. Return value string The file extension. File core/lib/Drupal/Core/Config/FileStorage.php, line 70 Class FileStorage Defines the file storage. Namespace Drupal\Core\Config Code public static function getFileExtension() { return 'yml'; }

PhpBackend::garbageCollection

public PhpBackend::garbageCollection() Performs garbage collection on a cache bin. The backend may choose to delete expired or invalidated items. Overrides CacheBackendInterface::garbageCollection File core/lib/Drupal/Core/Cache/PhpBackend.php, line 222 Class PhpBackend Defines a PHP cache implementation. Namespace Drupal\Core\Cache Code public function garbageCollection() { }

locale_translation_batch_fetch_import

locale_translation_batch_fetch_import($project, $langcode, $options, &$context) Implements callback_batch_operation(). Imports a gettext file from the translation directory. When successfully the translation status is updated. Parameters object $project: Source object of the translatable project. string $langcode: Language code. array $options: Array of import options. array $context: The batch context. See also locale_translate_batch_import_files() locale_translation_batch_fetch_download

EntityStorageBase::loadUnchanged

public EntityStorageBase::loadUnchanged($id) Loads an unchanged entity from the database. @todo Remove this method once we have a reliable way to retrieve the unchanged entity from the entity object. Parameters mixed $id: The ID of the entity to load. Return value \Drupal\Core\Entity\EntityInterface|null The unchanged entity, or NULL if the entity cannot be loaded. Overrides EntityStorageInterface::loadUnchanged File core/lib/Drupal/Core/Entity/EntityStorageBase.php, line 107 Class Entity