ConfigOverrider.php
Same filename in this branch
Same filename in other branches
- 9 core/modules/settings_tray/tests/modules/settings_tray_override_test/src/ConfigOverrider.php
- 9 core/modules/config/tests/config_override_test/src/ConfigOverrider.php
- 9 core/modules/config/tests/config_entity_static_cache_test/src/ConfigOverrider.php
- 10 core/modules/settings_tray/tests/modules/settings_tray_override_test/src/ConfigOverrider.php
- 10 core/modules/config/tests/config_override_test/src/ConfigOverrider.php
- 10 core/modules/config/tests/config_entity_static_cache_test/src/ConfigOverrider.php
- 11.x core/modules/settings_tray/tests/modules/settings_tray_override_test/src/ConfigOverrider.php
- 11.x core/modules/config/tests/config_override_test/src/ConfigOverrider.php
- 11.x core/modules/config/tests/config_entity_static_cache_test/src/ConfigOverrider.php
Namespace
Drupal\config_entity_static_cache_testFile
-
core/
modules/ config/ tests/ config_entity_static_cache_test/ src/ ConfigOverrider.php
View source
<?php
namespace Drupal\config_entity_static_cache_test;
use Drupal\Core\Cache\CacheableMetadata;
use Drupal\Core\Config\ConfigFactoryOverrideInterface;
use Drupal\Core\Config\StorageInterface;
/**
* Tests module overrides for configuration.
*/
class ConfigOverrider implements ConfigFactoryOverrideInterface {
/**
* {@inheritdoc}
*/
public function loadOverrides($names) {
return [
'config_test.dynamic.test_1' => [
'label' => 'Overridden label',
],
];
}
/**
* {@inheritdoc}
*/
public function getCacheSuffix() {
return 'config_entity_static_cache_test';
}
/**
* {@inheritdoc}
*/
public function createConfigObject($name, $collection = StorageInterface::DEFAULT_COLLECTION) {
return NULL;
}
/**
* {@inheritdoc}
*/
public function getCacheableMetadata($name) {
return new CacheableMetadata();
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
ConfigOverrider | Tests module overrides for configuration. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.