Файл: engine/classes/tmp.php
Строк: 15
<?php
class tmp
{
public function Top($title = 'iCoreCMS')
{
$top_file = ROOT.'/engine/templates/top.php';
if(file_exists($top_file))
{
require_once($top_file);
}
else
{
exit('Файл: <b>/engine/templates/top.php</b> не обнаружен. Выполнение скрипта остановлено.');
}
}
public function Bottom()
{
if($_SERVER['REQUEST_URI'] !== '/')
{
echo '<div class="errors"><a href="/">Главная</a></div>';
}
$bottom_file = ROOT.'/engine/templates/bottom.php';
if(file_exists($bottom_file))
{
require_once($bottom_file);
}
else
{
exit('Файл: <b>/engine/templates/bottom.php</b> не обнаружен. Выполнение скрипта остановлено.');
}
}
}
?>