You are here

public function FeaturesExtensionStoragesInterface::read in Features 8.4

Same name and namespace in other branches
  1. 8.3 src/FeaturesExtensionStoragesInterface.php \Drupal\features\FeaturesExtensionStoragesInterface::read()

Reads configuration data from the storages.

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.

1 method overrides FeaturesExtensionStoragesInterface::read()
FeaturesExtensionStorages::read in src/FeaturesExtensionStorages.php
Reads configuration data from the storages.

File

src/FeaturesExtensionStoragesInterface.php, line 52

Class

FeaturesExtensionStoragesInterface
The FeaturesExtensionStorages provides a collection of extension storages, one for each supported configuration directory.

Namespace

Drupal\features

Code

public function read($name);