public function ManagedStorage::read in Drupal 9
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Config/ManagedStorage.php \Drupal\Core\Config\ManagedStorage::read()
Reads configuration data from the storage.
Parameters
string $name: The name of a configuration object to load.
Return value
array|bool 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/ ManagedStorage.php, line 52
Class
- ManagedStorage
- The managed storage defers all the storage method calls to the manager.
Namespace
Drupal\Core\ConfigCode
public function read($name) {
return $this
->getStorage()
->read($name);
}