interface FeaturesExtensionStoragesInterface in Features 8.3
Same name and namespace in other branches
- 8.4 src/FeaturesExtensionStoragesInterface.php \Drupal\features\FeaturesExtensionStoragesInterface
The FeaturesExtensionStorages provides a collection of extension storages, one for each supported configuration directory.
Typically this will include the install and optional directories defined by Drupal core, but may also include any extension configuration directories added by contributed modules.
This class serves as a partial wrapper to Drupal\Core\Config\StorageInterface, providing a subset of methods that can be called to apply to all available extension storages. For example, FeaturesExtensionStoragesInterface::read() will read an extension-provided configuration item regardless of which extension storage directory it is provided in.
Hierarchy
- interface \Drupal\features\FeaturesExtensionStoragesInterface
Expanded class hierarchy of FeaturesExtensionStoragesInterface
All classes that implement FeaturesExtensionStoragesInterface
1 file declares its use of FeaturesExtensionStoragesInterface
- FeaturesManagerTest.php in tests/
src/ Unit/ FeaturesManagerTest.php
File
- src/
FeaturesExtensionStoragesInterface.php, line 23
Namespace
Drupal\featuresView source
interface FeaturesExtensionStoragesInterface {
/**
* Returns all registered extension storages.
*
* @return FeaturesInstallStorage[]
* Array of install storages keyed by configuration directory.
*/
public function getExtensionStorages();
/**
* Adds a storage.
*
* @param string $directory
* (optional) The configuration directory. If omitted,
* InstallStorage::CONFIG_INSTALL_DIRECTORY will be used.
*/
public function addStorage($directory = InstallStorage::CONFIG_INSTALL_DIRECTORY);
/**
* Reads configuration data from the storages.
*
* @param string $name
* The name of a configuration object to load.
*
* @return array|bool
* The configuration data stored for the configuration object name. If no
* configuration data exists for the given name, FALSE is returned.
*/
public function read($name);
/**
* Gets configuration object names starting with a given prefix.
*
* Given the following configuration objects:
* - node.type.article
* - node.type.page
*
* Passing the prefix 'node.type.' will return an array containing the above
* names.
*
* @param string $prefix
* (optional) The prefix to search for. If omitted, all configuration object
* names that exist are returned.
*
* @return array
* An array containing matching configuration object names.
*/
public function listAll($prefix = '');
/**
* Lists names of configuration objects provided by a given extension.
*
* If a $name and/or $namespace is specified, only matching modules will be
* returned. Otherwise, all install are returned.
*
* @param mixed $extension
* A string name of an extension or a full Extension object.
*
* @return array
* An array of configuration object names.
*/
public function listExtensionConfig(Extension $extension);
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
FeaturesExtensionStoragesInterface:: |
public | function | Adds a storage. | 1 |
FeaturesExtensionStoragesInterface:: |
public | function | Returns all registered extension storages. | 1 |
FeaturesExtensionStoragesInterface:: |
public | function | Gets configuration object names starting with a given prefix. | 1 |
FeaturesExtensionStoragesInterface:: |
public | function | Lists names of configuration objects provided by a given extension. | 1 |
FeaturesExtensionStoragesInterface:: |
public | function | Reads configuration data from the storages. | 1 |