Вход Регистрация
Файл: admin/index.php
Строк: 72
<?php
//error_reporting(E_ALL);
include $_SERVER['DOCUMENT_ROOT'] . '/inc/functions.php';

// проверяем, установлена ли cms, подключаемся к бд и авторизуемся
check_install ();
db_connect ();
load_module ('auth');

// если пользователь авторизовался, показываем ему админку
if ($_SESSION['status'] == '1' || $_SESSION['status'] == '2') {
    include 
$_SERVER['DOCUMENT_ROOT'] . '/admin/inc/header.php';
    
define ("CAFE"'1');
?>

<div class="header">
    <div class="header-left">
        <h1><a href="/admin/index.php">Панель управления</a></h1>
    </div>

    <div class="header-right">
        <p>
            <a href="/admin/index.php?section=users&amp;id=<?php echo $_SESSION['id']; ?>">
                <strong><?php echo $_SESSION['login']; ?></strong></a> 
            <a href="/admin/index.php?exit=ok">Выйти</a>
        </p>
    </div>
</div>

<div class="content">
    <div class="content-left">
        <ul>
            <li class="menu"><a href="/admin/index.php?section=pages">Страницы</a></li>
            <li class="menu"><a href="/admin/index.php?section=posts">Записи</a></li>
            <li class="menu"><a href="/admin/index.php?section=photos">Фотографии</a></li>
            <li class="menu"><a href="/admin/index.php?section=users">Пользователи</a> </li>
            <li class="menu"><a href="/admin/index.php?section=stats">Статистика</a></li>
            <li class="menu"><a href="/admin/index.php?section=logs">Журнал действий</a></li>
            <?php if ($_SESSION['status'] == '1') {
                echo 
'<li class="menu"><a href="/admin/index.php?section=settings">Настройки</a></li>';
            } 
?>

            <li class="menu"><a href="http://<?php echo $_SERVER['SERVER_NAME']; ?>">Перейти на сайт</a></li>
        </ul>
    </div>

    <div class="content-right">
    <?php
    
// если в параметре $_GET['section'] указан модуль, подключаем его, либо показываем дефолтный модуль "Страницы"
    
$module_name clear_input ($_GET['section']);
    !empty (
$module_name) ? include $_SERVER['DOCUMENT_ROOT'] . '/admin/modules/' $module_name '.php' : include $_SERVER['DOCUMENT_ROOT'] . '/admin/modules/pages.php';;

    include 
$_SERVER['DOCUMENT_ROOT'] . '/admin/inc/footer.php';
}
?>
Онлайн: 1
Реклама