Файл: templates/adms/index.php
Строк: 17
<?php
/*
MonsterCMS 0.6
ICQ: 22-22-095
ВКонтакте: https://vk.com/robot_anton
By Phenomenal
*/
$title = ('Панель администратора');
require_once('../../fnc/core.php');
require_once('../../fnc/head.php');
if($user['access'] < 700){ $_SESSION['message'] = 'БРЫСЬ!!';
header('Location: /');
}
if(!isset($user)){ $_SESSION['message'] = 'Для полного обзора необходима регистрация';
header('Location: /login');
}
echo '<div id="razdel"> '.$title.' </div>';
echo '<div id="links">
Ku Ku Admins
</div>';
require_once('../../fnc/foot.php');
?>