A cache collector to allow for dynamic building of the locale cache.
Hierarchy
- class \Drupal\Core\Cache\CacheCollector implements CacheCollectorInterface, DestructableInterface
- class \Drupal\locale\LocaleLookup
File
- core/modules/locale/src/LocaleLookup.php, line 15
Namespace
Drupal\locale
Members
Name | Modifiers | Type | Description |
---|---|---|---|
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::$storage | protected | property | Storage for the data itself. |
CacheCollector::$tags | protected | property | A list of tags that are used for the cache entry. |
CacheCollector::clear | public | function | Clears the collected cache entry. Overrides CacheCollectorInterface::clear |
CacheCollector::delete | public | function | Deletes the element. Overrides CacheCollectorInterface::delete |
CacheCollector::destruct | public | function | Performs destruct operations. Overrides DestructableInterface::destruct |
CacheCollector::get | public | function | Gets value from the cache. Overrides CacheCollectorInterface::get |
CacheCollector::has | public | function | Returns whether data exists for this key. Overrides CacheCollectorInterface::has |
CacheCollector::invalidateCache | protected | function | Invalidate the cache. |
CacheCollector::lazyLoadCache | protected | function | Loads the cache if not already done. |
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 |
CacheCollector::set | public | function | Implements \Drupal\Core\Cache\CacheCollectorInterface::set(). Overrides CacheCollectorInterface::set |
CacheCollector::updateCache | protected | function | Writes a value to the persistent cache immediately. |
LocaleLookup::$cache | protected | property | The cache backend that should be used. Overrides CacheCollector::$cache |
LocaleLookup::$configFactory | protected | property | The configuration factory. |
LocaleLookup::$context | protected | property | The msgctxt context. |
LocaleLookup::$langcode | protected | property | A language code. |
LocaleLookup::$languageManager | protected | property | The language manager. |
LocaleLookup::$lock | protected | property | The lock backend that should be used. Overrides CacheCollector::$lock |
LocaleLookup::$requestStack | protected | property | The request stack. |
LocaleLookup::$stringStorage | protected | property | The locale storage. |
LocaleLookup::getCid | protected | function | Gets the cache ID. Overrides CacheCollector::getCid |
LocaleLookup::resolveCacheMiss | protected | function | Resolves a cache miss. Overrides CacheCollector::resolveCacheMiss |
LocaleLookup::__construct | public | function | Constructs a LocaleLookup object. Overrides CacheCollector::__construct |
Please login to continue.