You are here

function spaces_views_handler_filetype in Spaces 5

Same name and namespace in other branches
  1. 5.2 spaces_views.inc \spaces_views_handler_filetype()

Custom view handler for filetypes

File

./spaces_views.inc, line 43

Code

function spaces_views_handler_filetype($fieldinfo, $fielddata, $value, $data) {
  $file = new stdClass();
  $file->filemime = $data->files_filemime;
  $file->filename = $data->files_filename;
  $file->filepath = $data->files_filepath;
  return theme('fileview', $file);
}