| 7 file.api.php | hook_file_download_access( |
| 8 file.api.php | hook_file_download_access($field, $entity_type, $entity) |
Control download access to files.
The hook is typically implemented to limit access based on the entity the file is referenced, e.g., only users with access to a node should be allowed to download files attached to that node.
Parameters
array $file_item: The array of information about the file to check access for.
$entity_type: The type of $entity; for example, 'node' or 'user'.
$entity: The $entity to which $file is referenced.
Return value
TRUE is access should be allowed by this entity or FALSE if denied. Note that denial may be overridden by another entity controller, making this grant permissive rather than restrictive.
See also
3 functions implement hook_file_download_access()
1 invocation of hook_file_download_access()
File
- modules/
file/ file.api.php, line 29 - Hooks for file module.
Code
function hook_file_download_access($file_item, $entity_type, $entity) {
if ($entity_type == 'node') {
return node_access('view', $entity);
}
}
Login or register to post comments