public function Config::getName

Returns the name of this configuration object.

Return value

string The name of the configuration object.

2 calls to Config::getName()
Config::setOverriddenData in drupal/core/lib/Drupal/Core/Config/Config.php
Sets the current data for this configuration object.
Config::setOverride in drupal/core/lib/Drupal/Core/Config/Config.php
Sets overridden data for this configuration object.

File

drupal/core/lib/Drupal/Core/Config/Config.php, line 116
Definition of Drupal\Core\Config\Config.

Class

Config
Defines the default configuration object.

Namespace

Drupal\Core\Config

Code

public function getName() {
  return $this->name;
}