views_aggregator.views.inc in Views Aggregator Plus 7
File
views/views_aggregator.views.inc
View source
<?php
function views_aggregator_views_plugins() {
$base_path = drupal_get_path('module', 'views_aggregator');
$plugins['style']['views_aggregator'] = array(
'title' => t('Table with aggregation options'),
'help' => t('Creates a tabular UI for the user to define aggregation functions.'),
'handler' => 'views_aggregator_plugin_style_table',
'theme' => 'views_aggregator_results_table',
'theme path' => $base_path . '/views',
'uses row plugin' => FALSE,
'uses row class' => TRUE,
'uses fields' => TRUE,
'uses options' => TRUE,
'type' => 'normal',
'help topic' => 'style-table',
);
return $plugins;
}