| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 | <?php/** * @file * Views integration for the file_entity module. *//** * Implements hook_views_data(). */function file_entity_views_data() {  // File type  $data['file_managed']['type'] = array(    'title' => t('Type'),    'help' => t('The type of the file (for example, "audio", "image", "video", etc).'),    'field' => array(      'handler' => 'views_handler_field_file_type',      'click sortable' => TRUE,    ),    'sort' => array(      'handler' => 'views_handler_sort',    ),    'filter' => array(      'handler' => 'views_handler_filter_file_type',    ),    'argument' => array(      'handler' => 'views_handler_argument_file_type',    ),  );  return $data;}/** * Implements hook_views_plugins(). */function file_entity_views_plugins() {  return array(    'module' => 'views', // This just tells our themes are elsewhere.    'row' => array(      'file' => array(        'title' => t('File'),        'help' => t('Display the file with standard file view.'),        'handler' => 'views_plugin_row_file_view',        'base' => array('file_managed'), // only works with 'file' as base.        'uses options' => TRUE,        'type' => 'normal',        'help topic' => 'style-file',      ),    ),  );}
 |