protected CachedStorage::getCacheKey($name)
Returns a cache key for a configuration name using the collection.
Parameters
string $name: The configuration name.
Return value
string The cache key for the configuration name.
File
- core/lib/Drupal/Core/Config/CachedStorage.php, line 266
Class
- CachedStorage
- Defines the cached storage.
Namespace
Drupal\Core\Config
Code
1 2 3 | protected function getCacheKey( $name ) { return $this ->getCollectionPrefix() . $name ; } |
Please login to continue.