public function FileCacheInterface::getMultiple in Plug 7
Gets data based on filenames.
Parameters
string[] $filepaths: List of file paths used as cache identifiers.
Return value
array List of cached data keyed by the passed in file paths.
2 methods override FileCacheInterface::getMultiple()
- FileCache::getMultiple in lib/
Drupal/ Component/ FileCache/ FileCache.php - Gets data based on filenames.
- NullFileCache::getMultiple in lib/
Drupal/ Component/ FileCache/ NullFileCache.php - Gets data based on filenames.
File
- lib/
Drupal/ Component/ FileCache/ FileCacheInterface.php, line 44 - Contains \Drupal\Component\FileCache\FileCacheInterface.
Class
- FileCacheInterface
- Interface for objects that allow caching file data.
Namespace
Drupal\Component\FileCacheCode
public function getMultiple(array $filepaths);