Render whatever the data is as a link to the file.
Data should be made XSS safe prior to calling this function.
function render_link($data, $values) {
if (!empty($this->options['link_to_file']) && $data !== NULL && $data !== '') {
$this->options['alter']['make_link'] = TRUE;
$this->options['alter']['path'] = file_create_url($this
->getValue($values, 'uri'));
}
return $data;
}