ConfigTestStorage.php in Zircon Profile 8
Same filename and directory in other branches
Contains \Drupal\config_test\ConfigTestStorage.
Namespace
Drupal\config_testFile
core/modules/config/tests/config_test/src/ConfigTestStorage.phpView source
<?php
/**
* @file
* Contains \Drupal\config_test\ConfigTestStorage.
*/
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
Name | Description |
---|---|
ConfigTestStorage | @todo. |