function ConfigOverriderLowPriority::loadOverrides
Same name in other branches
- 9 core/modules/config/tests/config_override_test/src/ConfigOverriderLowPriority.php \Drupal\config_override_test\ConfigOverriderLowPriority::loadOverrides()
- 8.9.x core/modules/config/tests/config_override_test/src/ConfigOverriderLowPriority.php \Drupal\config_override_test\ConfigOverriderLowPriority::loadOverrides()
- 11.x core/modules/config/tests/config_override_test/src/ConfigOverriderLowPriority.php \Drupal\config_override_test\ConfigOverriderLowPriority::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;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.