1.20.x 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
- includes/
config.inc, line 555 - This is the API for configuration storage.
Class
- Config
- Defines the default configuration object.
Code
public function setName($name) {
$this->name = $name;
return $this;
}