You are here

class ConfigOverrider in Zircon Profile 8

Same name in this branch
  1. 8 core/modules/config/tests/config_entity_static_cache_test/src/ConfigOverrider.php \Drupal\config_entity_static_cache_test\ConfigOverrider
  2. 8 core/modules/config/tests/config_override_test/src/ConfigOverrider.php \Drupal\config_override_test\ConfigOverrider
Same name and namespace in other branches
  1. 8.0 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/modules/config/src/Tests/ConfigEntityStaticCacheTest.php
Contains \Drupal\config\Tests\ConfigEntityStaticCacheTest.
1 string reference 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.

File

core/modules/config/tests/config_entity_static_cache_test/src/ConfigOverrider.php, line 17
Contains \Drupal\config_entity_static_cache_test\ConfigOverrider.

Namespace

Drupal\config_entity_static_cache_test
View source
class ConfigOverrider implements ConfigFactoryOverrideInterface {

  /**
   * {@inheritdoc}
   */
  public function loadOverrides($names) {
    return array(
      'config_test.dynamic.test_1' => array(
        '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