Файл: system/view/footer.php
Строк: 16
<?
if(!file_exists(TPL.'/themes/'.$tpl->type.'/'. $stylen .'/footer'. $tpl->format)) {
?>
<div class="footer"><?=$stat->online();?></div>
<?= $stat->adsFooter(); ?>
<div class="footer">
<?= $stat->footer(); ?>
</div>
</div>
</body>
</html>
<? } else {
if($locate == in_index) {
if(isset($_COOKIE['lang'])) {
$lng = $_COOKIE['lang'];
}
} else {
}
$view = file_get_contents(TPL.'/themes/'.$tpl->type.'/'. $stylen .'/footer'. $tpl->format);
$view = str_replace('{ads=footer}', $stat->adsFooter(), $view);
$view = str_replace('{online}', $stat->online(), $view);
$view = str_replace('{footer}', $stat->footer(), $view);
echo $view;
}