You are here

public function StorageReplaceDataWrapper::delete in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/config/src/StorageReplaceDataWrapper.php \Drupal\config\StorageReplaceDataWrapper::delete()

Deletes a configuration object from the storage.

Parameters

string $name: The name of a configuration object to delete.

Return value

bool TRUE on success, FALSE otherwise.

Overrides StorageInterface::delete

File

core/modules/config/src/StorageReplaceDataWrapper.php, line 97
Contains \Drupal\config\StorageReplaceDataWrapper.

Class

StorageReplaceDataWrapper
Wraps a configuration storage to allow replacing specific configuration data.

Namespace

Drupal\config

Code

public function delete($name) {
  if (isset($this->replacementData[$this->collection][$name])) {
    unset($this->replacementData[$this->collection][$name]);
  }
  return $this->storage
    ->delete($name);
}