Version 1
[yaffs-website] / web / core / modules / config / tests / config_entity_static_cache_test / src / ConfigOverrider.php
diff --git a/web/core/modules/config/tests/config_entity_static_cache_test/src/ConfigOverrider.php b/web/core/modules/config/tests/config_entity_static_cache_test/src/ConfigOverrider.php
new file mode 100644 (file)
index 0000000..8d21ee4
--- /dev/null
@@ -0,0 +1,46 @@
+<?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();
+  }
+
+}