Система управления «Сайт PRO»
Версия 20240107

detail.table_stat.php

Исходный код
<?php

$Table = $Page;

if (!$Table->stat) return;

$Row = $Main->create('table_row');
$Row->init($Table->stat, false);
$Row->stat = true;

print "\n" . '<tfoot><tr class="uk-background-muted">';

$cols = $Table->getCols();
foreach ($cols as $name => $Col) {
    print "\n" . '<td' . $Col->displayClass($Row) . $Col->displayStyle($Row) . $Col->displayAttrs($Row) . '>';
    print $Col->displayValue($Row);
    print '</td>';
}

print "\n" . '</tr></tfoot>';

?>