public function FileCacheInterface::get in Service Container 7
Same name and namespace in other branches
- 7.2 lib/Drupal/Component/FileCache/FileCacheInterface.php \Drupal\Component\FileCache\FileCacheInterface::get()
Gets data based on a filename.
Parameters
string $filepath: Path of the file that the cached data is based on.
Return value
mixed|null The data that was persisted with set() or NULL if there is no data or the file has been modified.
2 methods override FileCacheInterface::get()
- FileCache::get in lib/
Drupal/ Component/ FileCache/ FileCache.php - Gets data based on a filename.
- NullFileCache::get in lib/
Drupal/ Component/ FileCache/ NullFileCache.php - Gets data based on a filename.
File
- lib/
Drupal/ Component/ FileCache/ FileCacheInterface.php, line 33 - Contains \Drupal\Component\FileCache\FileCacheInterface.
Class
- FileCacheInterface
- Interface for objects that allow caching file data.
Namespace
Drupal\Component\FileCacheCode
public function get($filepath);