You are here

function chart_views_views_plugins in Google Chart Tools: Image Charts 7

Same name and namespace in other branches
  1. 6 chart_views/includes/views/chart_views.views.inc \chart_views_views_plugins()

Implements hook_views_plugins().

File

chart_views/views/chart_views.views.inc, line 12
Chart views integration.

Code

function chart_views_views_plugins() {
  return array(
    'module' => 'chart_views',
    'style' => array(
      'chart_views' => array(
        'handler' => 'chart_views_plugin_style_chart',
        'help' => t('Displays the content in several chart styles.'),
        'path' => drupal_get_path('module', 'chart_views') . '/views',
        'parent' => 'parent',
        'title' => t('Chart'),
        'type' => 'normal',
        'uses fields' => TRUE,
        'uses options' => TRUE,
        'uses row plugin' => FALSE,
      ),
    ),
  );
}