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
1 2 3 4 5 6 | 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.