public function ConfigOverriderLowPriority::loadOverrides in Drupal 9
Same name and namespace in other branches
- 8 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 17
Class
- ConfigOverriderLowPriority
- Tests module overrides for configuration.
Namespace
Drupal\config_override_testCode
public function loadOverrides($names) {
$overrides = [];
if (!empty($GLOBALS['config_test_run_module_overrides'])) {
if (in_array('system.site', $names)) {
$overrides = [
'system.site' => [
'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;
}