function theme_views_calc_table_summary in Views Calc 5
Views Calc summary display.
The summary view should be the normal summary view.
File
- ./
views_calc.module, line 634 - This module will allow you to add calculated fields to views tables and compute (SUM, COUNT, AVG, etc) columns of numeric data in a views table.
Code
function theme_views_calc_table_summary(&$view, $type, $level, &$items, $args) {
return theme('views_summary', $view, $type, $level, $items, $args);
}