ConfigOverriderLowPriority.php

Same filename and directory in other branches
  1. 8.9.x core/modules/config/tests/config_override_test/src/ConfigOverriderLowPriority.php
  2. 10 core/modules/config/tests/config_override_test/src/ConfigOverriderLowPriority.php
  3. 11.x core/modules/config/tests/config_override_test/src/ConfigOverriderLowPriority.php

Namespace

Drupal\config_override_test

File

core/modules/config/tests/config_override_test/src/ConfigOverriderLowPriority.php

View source
<?php

namespace Drupal\config_override_test;

use Drupal\Core\Cache\CacheableMetadata;
use Drupal\Core\Config\ConfigFactoryOverrideInterface;
use Drupal\Core\Config\StorageInterface;

/**
 * Tests module overrides for configuration.
 */
class ConfigOverriderLowPriority implements ConfigFactoryOverrideInterface {
    
    /**
     * {@inheritdoc}
     */
    public function loadOverrides($names) {
        $overrides = [];
        if (!empty($GLOBALS['config_test_run_module_overrides'])) {
            if (in_array('system.site', $names)) {
                $overrides = [
                    'system.site' => [
                        'name' => 'Should not apply because of higher priority listener',
                        // This override should apply because it is not overridden by the
                        // higher priority listener.
'slogan' => 'Yay for overrides!',
                    ],
                ];
            }
        }
        return $overrides;
    }
    
    /**
     * {@inheritdoc}
     */
    public function getCacheSuffix() {
        return 'ConfigOverriderLowPriority';
    }
    
    /**
     * {@inheritdoc}
     */
    public function createConfigObject($name, $collection = StorageInterface::DEFAULT_COLLECTION) {
        return NULL;
    }
    
    /**
     * {@inheritdoc}
     */
    public function getCacheableMetadata($name) {
        return new CacheableMetadata();
    }

}

Classes

Title Deprecated Summary
ConfigOverriderLowPriority Tests module overrides for configuration.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.