function statistics_views_handlers in Views (for Drupal 7) 6.2
Same name and namespace in other branches
- 6.3 modules/statistics.views.inc \statistics_views_handlers()
Implementation of hook_views_handlers() to register all of the basic handlers views uses.
Related topics
File
- modules/
statistics.views.inc, line 252 - Provide views data and handlers for statistics.module
Code
function statistics_views_handlers() {
return array(
'info' => array(
'path' => drupal_get_path('module', 'views') . '/modules/statistics',
),
'handlers' => array(
'views_handler_field_accesslog_path' => array(
'parent' => 'views_handler_field',
),
'views_handler_field_statistics_numeric' => array(
'parent' => 'views_handler_field_numeric',
),
'views_handler_field_node_counter_timestamp' => array(
'parent' => 'views_handler_field_date',
),
),
);
}