public function FileStorage::delete in Zircon Profile 8
Same name in this branch
- 8 core/lib/Drupal/Core/Config/FileStorage.php \Drupal\Core\Config\FileStorage::delete()
- 8 core/lib/Drupal/Component/PhpStorage/FileStorage.php \Drupal\Component\PhpStorage\FileStorage::delete()
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Component/PhpStorage/FileStorage.php \Drupal\Component\PhpStorage\FileStorage::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
1 method overrides FileStorage::delete()
- MTimeProtectedFastFileStorage::delete in core/lib/ Drupal/ Component/ PhpStorage/ MTimeProtectedFastFileStorage.php 
- Deletes PHP code from storage.
File
- core/lib/ Drupal/ Component/ PhpStorage/ FileStorage.php, line 187 
- Contains \Drupal\Component\PhpStorage\FileStorage.
Class
- FileStorage
- Stores the code as regular PHP files.
Namespace
Drupal\Component\PhpStorageCode
public function delete($name) {
  $path = $this
    ->getFullPath($name);
  if (file_exists($path)) {
    return $this
      ->unlink($path);
  }
  return FALSE;
}