You are here

function statistics_views_handlers in Views (for Drupal 7) 6.3

Same name and namespace in other branches
  1. 6.2 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 273
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',
      ),
    ),
  );
}