function node_file_download_access

Implements hook_file_download_access().

File

drupal/core/modules/node/node.module, line 3213
The core module that allows content to be submitted to the site.

Code

function node_file_download_access($field, EntityInterface $entity, File $file) {
  if ($entity
    ->entityType() == 'node') {
    return node_access('view', $entity);
  }
}