ConfigTestStorage.php

Same filename in other branches
  1. 9 core/modules/config/tests/config_test/src/ConfigTestStorage.php
  2. 10 core/modules/config/tests/config_test/src/ConfigTestStorage.php
  3. 11.x core/modules/config/tests/config_test/src/ConfigTestStorage.php

Namespace

Drupal\config_test

File

core/modules/config/tests/config_test/src/ConfigTestStorage.php

View source
<?php

namespace Drupal\config_test;

use Drupal\Core\Config\Entity\ConfigEntityStorage;
use Drupal\Core\Config\Config;

/**
 * @todo.
 */
class ConfigTestStorage extends ConfigEntityStorage {
    
    /**
     * {@inheritdoc}
     */
    public function importCreate($name, Config $new_config, Config $old_config) {
        // Set a global value we can check in test code.
        $GLOBALS['hook_config_import'] = __METHOD__;
        return parent::importCreate($name, $new_config, $old_config);
    }
    
    /**
     * {@inheritdoc}
     */
    public function importUpdate($name, Config $new_config, Config $old_config) {
        // Set a global value we can check in test code.
        $GLOBALS['hook_config_import'] = __METHOD__;
        return parent::importUpdate($name, $new_config, $old_config);
    }
    
    /**
     * {@inheritdoc}
     */
    public function importDelete($name, Config $new_config, Config $old_config) {
        // Set a global value we can check in test code.
        $GLOBALS['hook_config_import'] = __METHOD__;
        return parent::importDelete($name, $new_config, $old_config);
    }

}

Classes

Title Deprecated Summary
ConfigTestStorage @todo.

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