You are here

views_handler_field_file_link_download.inc in File Entity (fieldable files) 7.2

Same filename and directory in other branches
  1. 7.3 views/views_handler_field_file_link_download.inc

Definition of views_handler_field_file_link_download.

File

views/views_handler_field_file_link_download.inc
View source
<?php

/**
 * @file
 * Definition of views_handler_field_file_link_download.
 */

/**
 * Field handler to present a link to download a file.
 *
 * @ingroup views_field_handlers
 */
class views_handler_field_file_link_download extends views_handler_field_file_link {

  /**
   * Renders the link.
   */
  function render_link($file, $values) {

    // Ensure user has access to download this file.
    if (!file_entity_access('download', $file)) {
      return;
    }
    $this->options['alter']['make_link'] = TRUE;
    $uri = file_entity_download_uri($file);
    $this->options['alter']['path'] = $uri['path'];
    $this->options['alter'] = drupal_array_merge_deep($this->options['alter'], $uri['options']);
    $text = !empty($this->options['text']) ? $this->options['text'] : t('Download');
    return $text;
  }

}

Classes

Namesort descending Description
views_handler_field_file_link_download Field handler to present a link to download a file.