You are here

class AliasWhitelist in Drupal 8

Same name in this branch
  1. 8 core/modules/path_alias/src/AliasWhitelist.php \Drupal\path_alias\AliasWhitelist
  2. 8 core/lib/Drupal/Core/Path/AliasWhitelist.php \Drupal\Core\Path\AliasWhitelist
Same name and namespace in other branches
  1. 9 core/modules/path_alias/src/AliasWhitelist.php \Drupal\path_alias\AliasWhitelist

Extends CacheCollector to build the path alias whitelist over time.

Hierarchy

Expanded class hierarchy of AliasWhitelist

2 files declare their use of AliasWhitelist
AliasTest.php in core/modules/path_alias/tests/src/Kernel/AliasTest.php
DeprecatedClassesTest.php in core/modules/path_alias/tests/src/Unit/DeprecatedClassesTest.php
1 string reference to 'AliasWhitelist'
path_alias.services.yml in core/modules/path_alias/path_alias.services.yml
core/modules/path_alias/path_alias.services.yml
1 service uses AliasWhitelist
path_alias.whitelist in core/modules/path_alias/path_alias.services.yml
Drupal\path_alias\AliasWhitelist

File

core/modules/path_alias/src/AliasWhitelist.php, line 10

Namespace

Drupal\path_alias
View source
class AliasWhitelist extends CoreAliasWhitelist implements AliasWhitelistInterface {

}

Members

Namesort descending Modifiers Type Description Overrides
AliasWhitelist::$deprecatedProperties protected property
AliasWhitelist::$pathAliasRepository protected property The path alias repository.
AliasWhitelist::$state protected property The Key/Value Store to use for state.
AliasWhitelist::clear public function Clears the collected cache entry. Overrides CacheCollector::clear
AliasWhitelist::get public function Gets value from the cache. Overrides CacheCollector::get
AliasWhitelist::lazyLoadCache protected function Loads the cache if not already done. Overrides CacheCollector::lazyLoadCache
AliasWhitelist::loadMenuPathRoots protected function Loads menu path roots to prepopulate cache.
AliasWhitelist::resolveCacheMiss public function Resolves a cache miss. Overrides CacheCollector::resolveCacheMiss
AliasWhitelist::__construct public function Constructs an AliasWhitelist object. Overrides CacheCollector::__construct
CacheCollector::$cache protected property The cache backend that should be used. 1
CacheCollector::$cacheCreated protected property Stores the cache creation time.
CacheCollector::$cacheInvalidated protected property Flag that indicates of the cache has been invalidated.
CacheCollector::$cacheLoaded protected property Indicates if the collected cache was already loaded.
CacheCollector::$cid protected property The cache id that is used for the cache entry.
CacheCollector::$keysToPersist protected property An array of keys to add to the cache on service termination.
CacheCollector::$keysToRemove protected property An array of keys to remove from the cache on service termination.
CacheCollector::$lock protected property The lock backend that should be used. 1
CacheCollector::$storage protected property Storage for the data itself.
CacheCollector::$tags protected property A list of tags that are used for the cache entry.
CacheCollector::delete public function Deletes the element. Overrides CacheCollectorInterface::delete
CacheCollector::destruct public function Performs destruct operations. Overrides DestructableInterface::destruct
CacheCollector::getCid protected function Gets the cache ID. 3
CacheCollector::has public function Returns whether data exists for this key. Overrides CacheCollectorInterface::has 1
CacheCollector::invalidateCache protected function Invalidate the cache.
CacheCollector::normalizeLockName protected function Normalizes a cache ID in order to comply with database limitations.
CacheCollector::persist protected function Flags an offset value to be written to the persistent cache.
CacheCollector::reset public function Resets the local cache. Overrides CacheCollectorInterface::reset 1
CacheCollector::set public function Implements \Drupal\Core\Cache\CacheCollectorInterface::set(). Overrides CacheCollectorInterface::set 1
CacheCollector::updateCache protected function Writes a value to the persistent cache immediately. 1
DeprecatedServicePropertyTrait::__get public function Allows to access deprecated/removed properties.