function statistics_views_handlers
2.x 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',
),
),
);
}