views-aggregator-results-table.tpl.php in Views Aggregator Plus 7
views-aggregator-results-table.tpl.php
Template to display views results after aggregation as a table.
This template is based on the one in the Views module: views/themes/views-view-table.tpl.php
- $title : The title of this group of rows. May be empty.
- $header: An array of header labels keyed by field id.
- $caption: The caption for this table. May be empty.
- $header_classes: An array of header classes keyed by field id.
- $fields: An array of CSS IDs to use for each field id.
- $classes: A class or classes to apply to the table, based on settings.
- $grouping_field_class: A class to apply to cells in the group aggregation column.
- $totals_row_class: A class to apply to the column aggregation row
- $row_classes: An array of classes to apply to each row, indexed by row number. This matches the index in $rows.
- $rows: An array of row items. Each row is an array of content. $rows are keyed by row number, fields within rows are keyed by field ID.
- $field_classes: An array of classes to apply to each field, indexed by field id, then row number. This matches the index in $rows.
- $totals_row_position: whether to show the totals row at top, bottom or both
File
views/views-aggregator-results-table.tpl.phpView source
<?php
/**
* @file
* views-aggregator-results-table.tpl.php
*
* Template to display views results after aggregation as a table.
*
* This template is based on the one in the Views module:
* views/themes/views-view-table.tpl.php
*
* - $title : The title of this group of rows. May be empty.
* - $header: An array of header labels keyed by field id.
* - $caption: The caption for this table. May be empty.
* - $header_classes: An array of header classes keyed by field id.
* - $fields: An array of CSS IDs to use for each field id.
* - $classes: A class or classes to apply to the table, based on settings.
* - $grouping_field_class: A class to apply to cells in the group aggregation
* column.
* - $totals_row_class: A class to apply to the column aggregation row
* - $row_classes: An array of classes to apply to each row, indexed by row
* number. This matches the index in $rows.
* - $rows: An array of row items. Each row is an array of content.
* $rows are keyed by row number, fields within rows are keyed by field ID.
* - $field_classes: An array of classes to apply to each field, indexed by
* field id, then row number. This matches the index in $rows.
* - $totals_row_position: whether to show the totals row at top, bottom or both
*
* @ingroup views_templates
*/
?>
<table <?php
if ($classes) {
?>class="<?php
print "{$classes} table";
?>"<?php
}
print $attributes;
?>>
<?php
if (!empty($title) || !empty($caption)) {
?>
<caption><?php
print $caption . $title;
?></caption>
<?php
}
?>
<thead>
<?php
if (!empty($header)) {
?>
<tr>
<?php
foreach ($header as $field => $label) {
$hclasses = isset($header_classes[$field]) ? $header_classes[$field] : '';
if ($field === $grouping_field) {
$hclasses .= " {$grouping_field_class}";
}
?>
<th <?php
if (!empty($hclasses)) {
?>class="<?php
print $hclasses;
?>"<?php
}
?>>
<?php
print $label;
?>
</th>
<?php
}
?>
</tr>
<?php
}
?>
<?php
if ($totals_row_position & 1 && !empty($totals)) {
?>
<tr <?php
if (!empty($totals_row_class)) {
?>class="<?php
print $totals_row_class;
?>"<?php
}
?>>
<?php
// Use order of the row fields to output the totals likewise.
foreach (array_keys(reset($rows)) as $field) {
$hclasses = isset($header_classes[$field]) ? $header_classes[$field] : '';
if ($field === $grouping_field) {
$hclasses .= " {$grouping_field_class}";
}
?>
<th <?php
if (!empty($hclasses)) {
?>class="<?php
print $hclasses;
?>"<?php
}
?>>
<?php
print isset($totals[$field]) ? $totals[$field] : '';
?>
</th>
<?php
}
?>
</tr>
<?php
}
?>
</thead>
<tbody>
<?php
foreach ($rows as $r => $row) {
?>
<tr <?php
if (!empty($row_classes[$r])) {
?>class="<?php
print implode(' ', $row_classes[$r]);
?>"<?php
}
?>>
<?php
foreach ($row as $field => $content) {
$td_class = empty($field_classes[$field][$r]) ? '' : $field_classes[$field][$r];
if ($field === $grouping_field) {
$td_class .= " {$grouping_field_class}";
}
?>
<td <?php
if (!empty($td_class)) {
?>class="<?php
print $td_class;
?>"<?php
}
?>
<?php
if (!empty($field_attributes[$field][$r])) {
print drupal_attributes($field_attributes[$field][$r]);
}
?>>
<?php
print $content;
?>
</td>
<?php
}
?>
</tr>
<?php
}
?>
</tbody>
<?php
if ($totals_row_position & 2 && !empty($totals)) {
?>
<tfoot>
<tr <?php
if (!empty($totals_row_class)) {
?>class="<?php
print $totals_row_class;
?>"<?php
}
?>>
<?php
// Use order of the row fields to output the totals likewise.
foreach (array_keys(reset($rows)) as $field) {
$fclasses = isset($field_classes[$field]) ? reset($field_classes[$field]) : '';
if ($field === $grouping_field) {
$fclasses .= " {$grouping_field_class}";
}
?>
<th <?php
if (!empty($fclasses)) {
?>class="<?php
print $fclasses;
?>"<?php
}
?>>
<?php
print isset($totals[$field]) ? $totals[$field] : '';
?>
</th>
<?php
}
?>
</tr>
</tfoot>
<?php
}
?>
</table>