Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. Config.php

function Config::get

Same name in this branch
  1. 11.1.x vendor/composer/composer/src/Composer/Config.php \Composer\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\Config

Code

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;
        }
    }
}
RSS feed
Powered by Drupal