public function FileCacheInterface::delete in Service Container 7
Same name and namespace in other branches
- 7.2 lib/Drupal/Component/FileCache/FileCacheInterface.php \Drupal\Component\FileCache\FileCacheInterface::delete()
Deletes data from the cache.
Parameters
string $filepath: Path of the file that the cached data is based on.
2 methods override FileCacheInterface::delete()
- FileCache::delete in lib/
Drupal/ Component/ FileCache/ FileCache.php - Deletes data from the cache.
- NullFileCache::delete in lib/
Drupal/ Component/ FileCache/ NullFileCache.php - Deletes data from the cache.
File
- lib/
Drupal/ Component/ FileCache/ FileCacheInterface.php, line 62 - Contains \Drupal\Component\FileCache\FileCacheInterface.
Class
- FileCacheInterface
- Interface for objects that allow caching file data.
Namespace
Drupal\Component\FileCacheCode
public function delete($filepath);