function Config::set
Sets a value in this configuration object.
Parameters
string $key: Identifier to store value in configuration.
mixed $value: Value to associate with identifier.
Return value
$this The configuration object.
Overrides ConfigBase::set
1 method overrides Config::set()
- ImmutableConfig::set in core/
lib/ Drupal/ Core/ Config/ ImmutableConfig.php - Sets a value in this configuration object.
File
-
core/
lib/ Drupal/ Core/ Config/ Config.php, line 183
Class
- Config
- Defines the default configuration object.
Namespace
Drupal\Core\ConfigCode
public function set($key, $value) {
parent::set($key, $value);
$this->resetOverriddenData();
return $this;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.