StorageReplaceDataWrapper::delete

public StorageReplaceDataWrapper::delete($name)

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 93

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);
}
doc_Drupal
2016-10-29 09:44:47
Comments
Leave a Comment

Please login to continue.