function comment_file_download_access

Implements hook_file_download_access().

File

modules/comment/comment.module, line 2752

Code

function comment_file_download_access($field, $entity_type, $entity) {
    if ($entity_type == 'comment') {
        if (user_access('access comments') && $entity->status == COMMENT_PUBLISHED || user_access('administer comments')) {
            $node = node_load($entity->nid);
            return node_access('view', $node);
        }
        return FALSE;
    }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.