Files
wavelog/application/views/statistics/satuniquetable.php
2024-01-22 19:58:57 +00:00

29 lines
970 B
PHP

<?php
if ($qsoarray) {
echo '<br />
<table style="width:100%" class="satuniquetable table-sm table table-bordered table-hover table-striped table-condensed text-center">
<thead>';
echo '<tr><th></th>';
foreach($modes as $mode) {
echo '<th>' . $mode . '</th>';
}
echo '<th>'.lang('statistics_total').'</th>';
echo '</tr>
</thead>
<tbody>';
foreach ($qsoarray as $sat => $mode) {
echo '<tr><th>'. $sat .'</th>';
foreach ($mode as $singlemode) {
echo '<td>'.$singlemode.'</td>';
}
echo '<th>' . $satunique[$sat] . '</th>';
echo '</tr>';
}
echo '</tbody><tfoot><tr><th>'.lang('statistics_total').'</th>';
foreach($modes as $mode) {
echo '<th>' . $modeunique[$mode] . '</th>';
}
echo '<th>' . $total->calls . '</th>';
echo '</tr></tfoot></table>';
}