public function FileReadOnlyStorage::delete in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Component/PhpStorage/FileReadOnlyStorage.php \Drupal\Component\PhpStorage\FileReadOnlyStorage::delete()
Deletes PHP code from storage.
Parameters
string $name: The virtual file name. Can be a relative path.
Return value
bool TRUE if the delete succeeded, FALSE if it failed.
Overrides PhpStorageInterface::delete
File
- core/
lib/ Drupal/ Component/ PhpStorage/ FileReadOnlyStorage.php, line 62 - Contains \Drupal\Component\PhpStorage\FileReadOnlyStorage.
Class
- FileReadOnlyStorage
- Reads code as regular PHP files, but won't write them.
Namespace
Drupal\Component\PhpStorageCode
public function delete($name) {
return FALSE;
}