You are here

function download_count_views_handler_field_file::render in Download Count 6.2

Same name and namespace in other branches
  1. 7.2 includes/download_count_views_handler_field_file.inc \download_count_views_handler_field_file::render()

File

includes/download_count_views_handler_field_file.inc, line 48
Contains the views handler for download_count to correct file name and filepath links for files protected by the private_upload module. It should really be part of the private_upload module, but private_upload does not currently provide views 2…

Class

download_count_views_handler_field_file
Fix node title field to reflect correct private_upload path.

Code

function render($values) {
  return $this
    ->render_private(check_plain($values->{$this->field_alias}), $values);
}