function system_views_handlers
2.x system.views.inc | system_views_handlers() |
Implementation of hook_views_handlers() to register all of the basic handlers views uses.
Related topics
File
- modules/
system.views.inc, line 191 - Provide views data and handlers for system tables that are not represented by their own module.
Code
function system_views_handlers() {
return array(
'info' => array(
'path' => drupal_get_path('module', 'views') . '/modules/system',
),
'handlers' => array(
'views_handler_field_file' => array(
'parent' => 'views_handler_field',
),
'views_handler_field_file_status' => array(
'parent' => 'views_handler_field',
),
'views_handler_filter_file_status' => array(
'parent' => 'views_handler_filter_in_operator',
),
'views_handler_argument_file_fid' => array(
'parent' => 'views_handler_argument',
),
),
);
}