| 7 file.inc | file_load_multiple($fids = array(), $conditions = array()) |
| 8 file.inc | file_load_multiple($fids = array(), array $conditions = array()) |
Loads file objects from the database.
@todo Remove $conditions in Drupal 8.
Parameters
$fids: An array of file IDs.
$conditions: (deprecated) An associative array of conditions on the {file_managed} table, where the keys are the database fields and the values are the values those fields must have. Instead, it is preferable to use EntityFieldQuery to retrieve a list of entity IDs loadable by this function.
Return value
An array of file objects, indexed by fid.
See also
Related topics
14 calls to file_load_multiple()
File
- includes/
file.inc, line 533 - API for handling file uploads and server file management.
Code
function file_load_multiple($fids = array(), $conditions = array()) {
return entity_load('file', $fids, $conditions);
}
Login or register to post comments