Archiver::$description

The description of the archiver 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/Archiver/Annotation/Archiver.php, line 46 Class Archiver Defines an archiver annotation object. Namespace Drupal\Core\Archiver\Annotation Code public $description;

ConfigManagerInterface::getEntityManager

public ConfigManagerInterface::getEntityManager() Gets the entity manager. Return value \Drupal\Core\Entity\EntityManagerInterface The entity manager. File core/lib/Drupal/Core/Config/ConfigManagerInterface.php, line 38 Class ConfigManagerInterface Provides an interface for configuration manager. Namespace Drupal\Core\Config Code public function getEntityManager();

EntityConstraintViolationList::$entityViolationOffsets

Violations offsets of entity level violations. Type: int[]|null File core/lib/Drupal/Core/Entity/EntityConstraintViolationList.php, line 31 Class EntityConstraintViolationList Implements an entity constraint violation list. Namespace Drupal\Core\Entity Code protected $entityViolationOffsets;

book_type_is_allowed

book_type_is_allowed($type) Determines if a given node type is in the list of types allowed for books. Parameters string $type: A node type. Return value bool A Boolean TRUE if the node type can be included in books; otherwise, FALSE. File core/modules/book/book.module, line 509 Allows users to create and organize related content in an outline. Code function book_type_is_allowed($type) { return in_array($type, \Drupal::config('book.settings')->get('allowed_types')); }

LanguageNegotiator::getPrimaryNegotiationMethod

public LanguageNegotiator::getPrimaryNegotiationMethod($type) Returns the ID of the language type's primary language negotiation method. Parameters string $type: The language type. Return value string The identifier of the primary language negotiation method for the given language type, or the default method if none exists. Overrides LanguageNegotiatorInterface::getPrimaryNegotiationMethod File core/modules/language/src/LanguageNegotiator.php, line 222 Class LanguageNegotiator Class resp

AuthenticationCollector::$globalProviders

List of providers which are allowed on routes with no _auth option. Type: string[] File core/lib/Drupal/Core/Authentication/AuthenticationCollector.php, line 36 Class AuthenticationCollector A collector class for authentication providers. Namespace Drupal\Core\Authentication Code protected $globalProviders;

MemoryBackend::invalidateTags

public MemoryBackend::invalidateTags(array $tags) Marks cache items with any of the specified tags as invalid. Parameters string[] $tags: The list of tags for which to invalidate cache items. Overrides CacheTagsInvalidatorInterface::invalidateTags File core/lib/Drupal/Core/Cache/MemoryBackend.php, line 169 Class MemoryBackend Defines a memory cache implementation. Namespace Drupal\Core\Cache Code public function invalidateTags(array $tags) { foreach ($this->cache as $cid => $i

EntityType::setListBuilderClass

public EntityType::setListBuilderClass($class) Sets the list class. Parameters string $class: The list class to use for the operation. Return value $this Overrides EntityTypeInterface::setListBuilderClass File core/lib/Drupal/Core/Entity/EntityType.php, line 537 Class EntityType Provides an implementation of an entity type and its metadata. Namespace Drupal\Core\Entity Code public function setListBuilderClass($class) { $this->handlers['list_builder'] = $class; return $this; }

LocaleConfigManager::processTranslatableData

protected LocaleConfigManager::processTranslatableData($name, array $active, array $translatable, $langcode) Process the translatable data array with a given language. If the given language is translatable, will return the translated copy which will only contain strings that had translations. If the given language is English and is not translatable, will return a simplified array of the English source strings only. Parameters string $name: The configuration name. array $active: The active conf

ConfigFactoryOverrideBase::filterOverride

protected ConfigFactoryOverrideBase::filterOverride(Config $config, StorableConfigBase $override) Filters data in the override based on what is currently in configuration. Parameters \Drupal\Core\Config\Config $config: Current configuration object. \Drupal\Core\Config\StorableConfigBase $override: Override object corresponding to the configuration to filter data in. File core/lib/Drupal/Core/Config/ConfigFactoryOverrideBase.php, line 63 Class ConfigFactoryOverrideBase Defines a base event