You are here

function flot_views_views_decorators in Flot 7

Implements hook_views_decorators

File

flot_views/views/flot_views.views.inc, line 99
Provides view integration for Flot.

Code

function flot_views_views_decorators() {
  return array(
    'info' => array(
      'path' => drupal_get_path('module', 'flot_views') . '/views/handlers',
    ),
    'handlers' => array(
      'views_flot_handler_field' => array(
        'parent' => 'views_handler_field',
      ),
    ),
  );
}