function views_aggregator_theme in Views Aggregator Plus 7
Same name and namespace in other branches
- 8 views_aggregator.module \views_aggregator_theme()
Implements hook_theme().
File
- ./
views_aggregator.module, line 27
Code
function views_aggregator_theme() {
$base_path = drupal_get_path('module', 'views_aggregator');
$themes = array(
'views_aggregator_plugin_style_table' => array(
// Pass $form to theme_views_aggregator_plugin_style_table($vars)
'render element' => 'form',
'path' => $base_path . '/views',
'file' => 'theme_views_aggregator_plugin_style_table.inc',
),
);
return $themes;
}