You are here

function statspro_views_handlers in Statistics Pro 6.2

Same name and namespace in other branches
  1. 6 views/statspro.views.inc \statspro_views_handlers()

Implementation of hook_views_handlers() to register all of the basic handlers views uses.

Return value

array

File

views/statspro.views.inc, line 81
Views support for statistcs pro module

Code

function statspro_views_handlers() {
  return array(
    'info' => array(
      'path' => drupal_get_path('module', 'statspro') . '/views',
    ),
    'handlers' => array(
      'statspro_views_handler_field_graph' => array(
        'parent' => 'views_handler_field_numeric',
      ),
      'statspro_views_handler_field_graph_trend' => array(
        'parent' => 'views_handler_field_numeric',
      ),
    ),
  );
}