class ConfigRenameEvent in Drupal 8
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/Config/ConfigRenameEvent.php \Drupal\Core\Config\ConfigRenameEvent
Configuration event fired when renaming a configuration object.
Hierarchy
- class \Drupal\Core\Config\ConfigCrudEvent extends \Symfony\Component\EventDispatcher\Event
- class \Drupal\Core\Config\ConfigRenameEvent
Expanded class hierarchy of ConfigRenameEvent
2 files declare their use of ConfigRenameEvent
- ConfigFactoryOverrideBaseTest.php in core/
tests/ Drupal/ Tests/ Core/ Config/ ConfigFactoryOverrideBaseTest.php - LanguageConfigFactoryOverride.php in core/
modules/ language/ src/ Config/ LanguageConfigFactoryOverride.php
File
- core/
lib/ Drupal/ Core/ Config/ ConfigRenameEvent.php, line 8
Namespace
Drupal\Core\ConfigView source
class ConfigRenameEvent extends ConfigCrudEvent {
/**
* The old configuration object name.
*
* @var string
*/
protected $oldName;
/**
* Constructs the config rename event.
*
* @param \Drupal\Core\Config\Config $config
* The configuration that has been renamed.
* @param string $old_name
* The old configuration object name.
*/
public function __construct(Config $config, $old_name) {
$this->config = $config;
$this->oldName = $old_name;
}
/**
* Gets the old configuration object name.
*
* @return string
* The old configuration object name.
*/
public function getOldName() {
return $this->oldName;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ConfigCrudEvent:: |
protected | property | Configuration object. | |
ConfigCrudEvent:: |
public | function | Gets configuration object. | |
ConfigCrudEvent:: |
public | function | Checks to see if the provided configuration key's value has changed. | |
ConfigRenameEvent:: |
protected | property | The old configuration object name. | |
ConfigRenameEvent:: |
public | function | Gets the old configuration object name. | |
ConfigRenameEvent:: |
public | function |
Constructs the config rename event. Overrides ConfigCrudEvent:: |