function 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 273
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',
),
),
);
}