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);
}
Please login to continue.