1 config.inc public Config::setName($name)

Sets the name of this configuration object.

Parameters

string $name: The name of the configuration object.

Return value

Config: The configuration object.

File

core/includes/config.inc, line 529
This is the API for configuration storage.

Class

Config
Defines the default configuration object.

Code

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