You are here

function webfm_views_handler_file_filename_download in Web File Manager 5

Same name and namespace in other branches
  1. 5.2 webfm_views.inc \webfm_views_handler_file_filename_download()

File

./webfm_views.inc, line 176

Code

function webfm_views_handler_file_filename_download($fieldinfo, $fielddata, $value, $data) {
  $name = strrev(substr(strrev($value), 0, strpos(strrev($value), '/')));
  return l(check_plain($name), 'webfm_send/' . $data->webfm_file_fid);
}