function hook_file_download_access
7.x file.api.php | hook_file_download_access($file_item, $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()
Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.
- comment_file_download_access in drupal-7.x/
modules/ comment/ comment.module - Implements hook_file_download_access().
- node_file_download_access in drupal-7.x/
modules/ node/ node.module - Implements hook_file_download_access().
- user_file_download_access in drupal-7.x/
modules/ user/ user.module - Implements hook_file_download_access().
1 invocation of hook_file_download_access()
- file_file_download in drupal-7.x/
modules/ file/ file.module - Implements hook_file_download().
File
- drupal-7.x/
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);
}
}