You are here

class ConfigOverrider in Drupal 9

Same name in this branch
  1. 9 core/modules/config/tests/config_entity_static_cache_test/src/ConfigOverrider.php \Drupal\config_entity_static_cache_test\ConfigOverrider
  2. 9 core/modules/config/tests/config_override_test/src/ConfigOverrider.php \Drupal\config_override_test\ConfigOverrider
  3. 9 core/modules/settings_tray/tests/modules/settings_tray_override_test/src/ConfigOverrider.php \Drupal\settings_tray_override_test\ConfigOverrider
Same name and namespace in other branches
  1. 8 core/modules/config/tests/config_entity_static_cache_test/src/ConfigOverrider.php \Drupal\config_entity_static_cache_test\ConfigOverrider

Tests module overrides for configuration.

Hierarchy

Expanded class hierarchy of ConfigOverrider

1 file declares its use of ConfigOverrider
ConfigEntityStaticCacheTest.php in core/tests/Drupal/KernelTests/Core/Config/ConfigEntityStaticCacheTest.php
2 string references to 'ConfigOverrider'
ConfigOverrider::getCacheSuffix in core/modules/config/tests/config_override_test/src/ConfigOverrider.php
The string to append to the configuration static cache name.
ConfigOverrider::getCacheSuffix in core/modules/settings_tray/tests/modules/settings_tray_override_test/src/ConfigOverrider.php
The string to append to the configuration static cache name.

File

core/modules/config/tests/config_entity_static_cache_test/src/ConfigOverrider.php, line 12

Namespace

Drupal\config_entity_static_cache_test
View source
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();
  }

}

Members

Namesort descending Modifiers Type Description Overrides
ConfigOverrider::createConfigObject public function Creates a configuration object for use during install and synchronization. Overrides ConfigFactoryOverrideInterface::createConfigObject
ConfigOverrider::getCacheableMetadata public function Gets the cacheability metadata associated with the config factory override. Overrides ConfigFactoryOverrideInterface::getCacheableMetadata
ConfigOverrider::getCacheSuffix public function The string to append to the configuration static cache name. Overrides ConfigFactoryOverrideInterface::getCacheSuffix
ConfigOverrider::loadOverrides public function Returns config overrides. Overrides ConfigFactoryOverrideInterface::loadOverrides