You are here

public function ConfigurationIgnorePluginInterface::getConfigurations in Config Ignore Keys 8

Should return an array containing the following structure.


 [
   'name.of.the.configuration.file.without.extension.1' => [
     'key.of.the.configuration.1'
     'key.of.the.configuration.2'
   ],
   'name.of.the.configuration.file.without.extension.2' => [
     'key.of.the.configuration.1'
     'key.of.the.configuration.2'
   ],
   'name.of.the.configuration.file.without.extension.3'
]

The key.of.the.configuration is the path to the config key inside the array containing the entire configuration of the file.

For 'name.of.the.configuration.file.without.extension.3' the whole file will be ignored.

Return value

array The configuration.

See also

ConfigFactoryInterface::getEditable()

2 methods override ConfigurationIgnorePluginInterface::getConfigurations()
NodeConfigIgnore::getConfigurations in tests/modules/configuration_ignore_test/src/Plugin/ConfigIgnore/NodeConfigIgnore.php
Should return an array containing the following structure.
NullConfigIgnorePlugin::getConfigurations in src/Plugin/ConfigIgnore/NullConfigIgnorePlugin.php
Should return an array containing the following structure.

File

src/Plugin/ConfigurationIgnorePluginInterface.php, line 40

Class

ConfigurationIgnorePluginInterface
Interface ConfigurationIgnorePluginInterface.

Namespace

Drupal\config_ignore_keys\Plugin

Code

public function getConfigurations();