Файл: style/themes/default/foot.php
Строк: 40
<?php
lang::start('foot');
list($msec, $sec) = explode(chr(32), microtime());
$page_size = ob_get_length();
ob_end_flush();
if (!isset($_SESSION['traf'])) {
$_SESSION['traf'] = 0;
}
$_SESSION['traf'] += $page_size;
rekl(3);
#Загрузка дополнительных плагинов
$Search = glob(H . 'sys/panel_foot/*.php');
if ($Search != null) {
foreach ($Search as $load_plugins) {
include_once $load_plugins;
}
}
echo rekl_fiera();
#включаем стастистику сайта
if ($user['group_access'] > 1 and $set['panel_foot_sys'] == 1) {
echo "<div class='list-group-item'>n";
echo "<small><center>";
echo "[ " . number_format($page_size / 1024, 2) . " Кб / " . number_format($_SESSION['traf'] / 1024, 2) . " Кб / " . number_format(($sec + $msec) - $conf['headtime'], 3) . "сек / Memory " . size_file(memory_get_usage() - Memory_start) . " / Sql :" . $query_number . " / mysql " . number_format($tpassed, 4) . " ]";
echo "</center></small>";
echo "</div>n";
} else {
echo "<div class='list-group-item'>n";
echo "<small><center>";
echo "[ " . number_format($page_size / 1024, 2) . " Кб :: " . number_format($_SESSION['traf'] / 1024, 2) . " Кб ]";
echo "</center></small>";
echo "</div>n";
}
echo "<div style='font-size:small;text-align: center;' class='list-group-item'>";
echo "<a title='Сделано на DCMS-FIERA.ru' href='http://dcms-fiera.ru?copyright'><span style='text-shadow: 0 -0 4px #FFF;padding: 3px;color:#000;border-radius:8px;'>© Dcms-Fiera</a> | ";
echo "<a title='Сделано на SEVFO.COM' href='http://sevfo.com'><span style='text-shadow: 0 -0 4px #FFF;padding: 3px;color:#000;border-radius:8px;'>Dcms-Special 2015</span></a>";
echo "</div>";
echo "</div>n</body>n</html>";
unset($set, $ank, $user);