Файл: WM_dvig/admin_cabinet.php
Строк: 14
<?php
$verx = 'Админ кабинет';
require_once ('system/function.php');
require_once ('system/header.php');
if(!$user['id']) {
header('Location: /');
exit();
}
if($user['level'] < 2) {
header('Location: /');
exit();
}
echo '<div class="razd" style="text-align:center;font-weight:bold;">'.$verx.'</div>
<div class="hit" style="border-bottom:1px dashed #e6b464"><a href="/cab">Кабинет</a> -> '.$verx.'</div>';
echo '<div class="menu_j"><a href="/news/add" class="top_menu_j"> Добавить новость</a></div>';
require_once ('system/footer.php');
?>