CachedStorage::getCacheKey

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

protected function getCacheKey($name) {
  return $this->getCollectionPrefix() . $name;
}
doc_Drupal
2016-10-29 08:49:32
Comments
Leave a Comment

Please login to continue.