You are here

public function ConfigRevertInterface::getFromExtension in Configuration Update Manager 8

Gets the extension storage value of configuration.

This is the value from a file in the config/install or config/optional directory of a module, theme, or install profile.

Parameters

string $type: The type of configuration. Or pass '' to indicate that $name is the full name.

string $name: The name of the config item, without the prefix.

Return value

array|false The configuration value, or FALSE if it could not be located.

1 method overrides ConfigRevertInterface::getFromExtension()
ConfigReverter::getFromExtension in src/ConfigReverter.php
Gets the extension storage value of configuration.

File

src/ConfigRevertInterface.php, line 94

Class

ConfigRevertInterface
Defines an interface for config import and revert operations.

Namespace

Drupal\config_update

Code

public function getFromExtension($type, $name);