function Config::get
Same name in other branches
- 9 core/lib/Drupal/Core/Config/Config.php \Drupal\Core\Config\Config::get()
- 8.9.x core/lib/Drupal/Core/Config/Config.php \Drupal\Core\Config\Config::get()
- 10 core/lib/Drupal/Core/Config/Config.php \Drupal\Core\Config\Config::get()
Overrides ConfigBase::get
File
-
core/
lib/ Drupal/ Core/ Config/ Config.php, line 84
Class
- Config
- Defines the default configuration object.
Namespace
Drupal\Core\ConfigCode
public function get($key = '') {
if (!isset($this->overriddenData)) {
$this->setOverriddenData();
}
if (empty($key)) {
return $this->overriddenData;
}
else {
$parts = explode('.', $key);
if (count($parts) == 1) {
return $this->overriddenData[$key] ?? NULL;
}
else {
$value = NestedArray::getValue($this->overriddenData, $parts, $key_exists);
return $key_exists ? $value : NULL;
}
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.