function upload_views_handlers in Views (for Drupal 7) 6.2
Same name and namespace in other branches
- 6.3 modules/upload.views.inc \upload_views_handlers()
Implementation of hook_views_handlers() to register all of the basic handlers views uses.
Related topics
File
- modules/
upload.views.inc, line 142 - Provide views data and handlers for upload tables that are not represented by their own module.
Code
function upload_views_handlers() {
return array(
'info' => array(
'path' => drupal_get_path('module', 'views') . '/modules/upload',
),
'handlers' => array(
'views_handler_field_upload_fid' => array(
'parent' => 'views_handler_field_prerender_list',
),
'views_handler_field_upload_description' => array(
'parent' => 'views_handler_field',
),
'views_handler_filter_upload_fid' => array(
'parent' => 'views_handler_filter_boolean_operator',
),
),
);
}