public function ConfigOverriderLowPriority::loadOverrides in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/config/tests/config_override_test/src/ConfigOverriderLowPriority.php \Drupal\config_override_test\ConfigOverriderLowPriority::loadOverrides()
Returns config overrides.
Parameters
array $names: A list of configuration names that are being loaded.
Return value
array An array keyed by configuration name of override data. Override data contains a nested array structure of overrides.
Overrides ConfigFactoryOverrideInterface::loadOverrides
File
- core/
modules/ config/ tests/ config_override_test/ src/ ConfigOverriderLowPriority.php, line 22 - Contains \Drupal\config_override_test\ConfigOverriderLowPriority.
Class
- ConfigOverriderLowPriority
- Tests module overrides for configuration.
Namespace
Drupal\config_override_testCode
public function loadOverrides($names) {
$overrides = array();
if (!empty($GLOBALS['config_test_run_module_overrides'])) {
if (in_array('system.site', $names)) {
$overrides = array(
'system.site' => array(
'name' => 'Should not apply because of higher priority listener',
// This override should apply because it is not overridden by the
// higher priority listener.
'slogan' => 'Yay for overrides!',
),
);
}
}
return $overrides;
}