| Versionen | |
|---|---|
| drupal7 | file_load($fid) |
Load a file object from the database.
see hook_file_load()
$fid A file ID.
A file object.
includes/
<?php
function file_load($fid) {
$files = file_load_multiple(array($fid), array());
return reset($files);
}
?>
Kommentare
Kommentar hinzufügen