You are here

function statspro_views_handlers in Statistics Pro 6

Same name and namespace in other branches
  1. 6.2 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 95
Views support for statistcs pro module

Code

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