function CachedStorage::read
Reads configuration data from the storage.
Parameters
string $name: The name of a configuration object to load.
Return value
array|false The configuration data stored for the configuration object name. If no configuration data exists for the given name, FALSE is returned.
Overrides StorageInterface::read
File
- 
              core/lib/ Drupal/ Core/ Config/ CachedStorage.php, line 65 
Class
- CachedStorage
- Defines the cached storage.
Namespace
Drupal\Core\ConfigCode
public function read($name) {
  $cache_key = $this->getCacheKey($name);
  if ($cache = $this->cache
    ->get($cache_key)) {
    // The cache contains either the cached configuration data or FALSE
    // if the configuration file does not exist.
    return $cache->data;
  }
  // Read from the storage on a cache miss and cache the data. Also cache
  // information about missing configuration objects.
  $data = $this->storage
    ->read($name);
  $this->cache
    ->set($cache_key, $data);
  return $data;
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
