Файл: engine/includes/foot.php
Строк: 46
<?php
$gen = round( microtime(1) - START, 4);
$memory = round((memory_get_usage() - CPU) / 1024);
/*
Trike::get_instance(
array(
'id' => 'footer.tpl~theme='.$show_theme,
'compile' => false,
'tpl_file' => 'footer.tpl',
)
);
*/
$vars = array();
$vars['gen'] = $gen;
$vars['memory'] = $memory;
$vars['sql_time'] = $sql->using_time;
$vars['sql_queries'] = $sql->queries;
$fenom->display('footer.tpl', $vars);
/*
$cache = new Cache(tmpDir . 'ads[main=' . (int) MAIN . ';pos=top].swc');
$tpl_ads = array();
if (!$cache->life())
{
ob_start();
$sql->query('SELECT `name`, `link`, `img`, `new_line` FROM `ads` WHERE `pos` = "top" AND `time` > ' . $time . ' AND `main` = "' . (int) MAIN . '"');
while ($ads = $sql->fetch())
{
if (!empty($ads['img']))
{
$tpl_ads[] = (isset($ads['new_line']) ? '<br />' : '') . '<a href="' . $ads['link'] . '"><img src="' . $ads['img'] . '" alt="" title="' . $ads['name'] . '"/></a>';
}
else
{
$tpl_ads[] = '<div class="rekl"><a href="' . $ads['link'] . '">' . $ads['name'] . '</a></div>';
}
}
Trike::get_instance(
array(
'id' => 'ads.tpl~theme='.$show_theme.';pos=top;main='.(int) MAIN,
'compile' => true,
'tpl_file' => 'ads_top.tpl',
)
);
Trike::get_instance()->set('ads', $tpl_ads);
$cache->write();
}
echo $cache->read();
*/
if ($gen > 3
|| // если генерация больее трех секунд
($memory > 400 && $_SERVER['PHP_SELF'] != '/pages/anketa.php')
|| // или если используемая память более 400 кб
$sql->queries > 15
) // или запросов больше десяти, отправляем уведомление создателю
{
error_catch(null, null, null, null, __('Генерация: :gen сек', array(':gen' => ($gen))).
' (mysql: ' . $sql->using_time . ')<br />' .
__('Память: :memory kb', array(':memory' => ($memory))),' <br />' .
__('Запросов: :queries', array(':queries' => $sql->queries)), 'loading');
}
if (Core::$user_id) {
unset($user);
}
unset($gen, $memory, $sql, $result, $time, $meta_og, $id, $show_theme, $act, $cur_page, $ads, $set, $user_id, $moder, $admin, $creator, $msg, $meta_tags);
exit;