You are here

public function Config::delete in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Config/Config.php \Drupal\Core\Config\Config::delete()
  2. 10 core/lib/Drupal/Core/Config/Config.php \Drupal\Core\Config\Config::delete()

Deletes the configuration object.

Return value

$this The configuration object.

Overrides StorableConfigBase::delete

1 method overrides Config::delete()
ImmutableConfig::delete in core/lib/Drupal/Core/Config/ImmutableConfig.php
Deletes the configuration object.

File

core/lib/Drupal/Core/Config/Config.php, line 242

Class

Config
Defines the default configuration object.

Namespace

Drupal\Core\Config

Code

public function delete() {
  $this->data = [];
  $this->storage
    ->delete($this->name);
  Cache::invalidateTags($this
    ->getCacheTags());
  $this->isNew = TRUE;
  $this
    ->resetOverriddenData();
  $this->eventDispatcher
    ->dispatch(ConfigEvents::DELETE, new ConfigCrudEvent($this));
  $this->originalData = $this->data;
  return $this;
}