You are here

function views_charts_views_plugins in Views Charts 7

Same name and namespace in other branches
  1. 6 views_charts.views.inc \views_charts_views_plugins()

@todo Please document this function.

See also

http://drupal.org/node/1354

File

./views_charts.views.inc, line 12
Holds methods directly related to the Views module.

Code

function views_charts_views_plugins() {
  $plugins = array();
  $plugins['style'] = array(
    'charts' => array(
      'title' => t('Charts & Graphs'),
      'help' => t('Displays rows in a chart.'),
      'handler' => 'views_plugin_style_chart',
      'path' => drupal_get_path('module', 'views_charts'),
      'uses row plugin' => TRUE,
      'uses options' => TRUE,
      'uses fields' => TRUE,
      'type' => 'normal',
    ),
  );
  return $plugins;
}