function charts_views_plugins in Charts 7
Same name and namespace in other branches
- 6 views/charts.views.inc \charts_views_plugins()
- 7.2 views/charts.views.inc \charts_views_plugins()
Implementation of hook_views_plugins().
Define charts style for Views.
File
- views/
charts.views.inc, line 13 - @author Bruno Massa http://drupal.org/user/67164
Code
function charts_views_plugins() {
// Views support is only possible if Views Calc module is enabled. It
// is responsible for turn the Views values into a aggregates.
if (!module_exists('views_calc')) {
return;
}
return array(
'module' => 'charts',
'style' => array(
// Declare the charts style plugin
'chart' => array(
'handler' => 'charts_plugin_style_chart',
'help' => t('Displays the content in several Chart styles.'),
'path' => drupal_get_path('module', 'charts') . '/views',
'parent' => 'parent',
'title' => t('Chart'),
'type' => 'normal',
'uses fields' => TRUE,
'uses options' => TRUE,
'uses row plugin' => FALSE,
),
),
);
}