function system_views_handlers in Views (for Drupal 7) 6.3
Same name and namespace in other branches
- 6.2 modules/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 312  - 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_field_file_extension' => 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',
      ),
      'views_handler_filter_system_type' => array(
        'parent' => 'views_handler_filter_in_operator',
      ),
    ),
  );
}