protected function Config::resetOverriddenData in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Config/Config.php \Drupal\Core\Config\Config::resetOverriddenData()
Resets the current data, so overrides are re-applied.
This method should be called after the original data or the overridden data has been changed.
Return value
\Drupal\Core\Config\Config The configuration object.
8 calls to Config::resetOverriddenData()
- Config::clear in core/
lib/ Drupal/ Core/ Config/ Config.php - Unsets a value in this configuration object.
- Config::delete in core/
lib/ Drupal/ Core/ Config/ Config.php - Deletes the configuration object.
- Config::initWithData in core/
lib/ Drupal/ Core/ Config/ Config.php - Initializes a configuration object with pre-loaded data.
- Config::save in core/
lib/ Drupal/ Core/ Config/ Config.php - Saves the configuration object.
- Config::set in core/
lib/ Drupal/ Core/ Config/ Config.php - Sets a value in this configuration object.
File
- core/
lib/ Drupal/ Core/ Config/ Config.php, line 180 - Contains \Drupal\Core\Config\Config.
Class
- Config
- Defines the default configuration object.
Namespace
Drupal\Core\ConfigCode
protected function resetOverriddenData() {
unset($this->overriddenData);
return $this;
}