ConfigBase::setName

public ConfigBase::setName($name)

Sets the name of this configuration object.

Parameters

string $name: The name of the configuration object.

Return value

$this The configuration object.

File

core/lib/Drupal/Core/Config/ConfigBase.php, line 79

Class

ConfigBase
Provides a base class for configuration objects with get/set support.

Namespace

Drupal\Core\Config

Code

1
2
3
4
public function setName($name) {
  $this->name = $name;
  return $this;
}
doc_Drupal
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.