ConfigOverrider.php in Drupal 8
File
core/modules/settings_tray/tests/modules/settings_tray_override_test/src/ConfigOverrider.php
View source
<?php
namespace Drupal\settings_tray_override_test;
use Drupal\Core\Cache\CacheableMetadata;
use Drupal\Core\Config\ConfigFactoryOverrideInterface;
use Drupal\Core\Config\StorageInterface;
class ConfigOverrider implements ConfigFactoryOverrideInterface {
public function loadOverrides($names) {
$overrides = [];
if (in_array('block.block.overridden_block', $names)) {
if (\Drupal::state()
->get('settings_tray_override_test.block')) {
$overrides = $overrides + [
'block.block.overridden_block' => [
'settings' => [
'label' => 'Now this will be the label.',
],
],
];
}
}
if (in_array('system.site', $names)) {
if (\Drupal::state()
->get('settings_tray_override_test.site_name')) {
$overrides = $overrides + [
'system.site' => [
'name' => 'Llama Fan Club',
],
];
}
}
if (in_array('system.menu.main', $names)) {
if (\Drupal::state()
->get('settings_tray_override_test.menu')) {
$overrides = $overrides + [
'system.menu.main' => [
'label' => 'Labely label',
],
];
}
}
return $overrides;
}
public function getCacheSuffix() {
return 'ConfigOverrider';
}
public function createConfigObject($name, $collection = StorageInterface::DEFAULT_COLLECTION) {
return NULL;
}
public function getCacheableMetadata($name) {
return new CacheableMetadata();
}
}