Файл: pages/_account.php
Строк: 150
<?PHP
$_OPTIMIZATION["title"] = "Аккаунт";
$_OPTIMIZATION["description"] = "Аккаунт пользователя";
$_OPTIMIZATION["keywords"] = "Аккаунт, личный кабинет, пользователь";
# Блокировка сессии
if(!isset($_SESSION["user_id"])){ Header("Location: /"); return; }
if(isset($_GET["sel"])){
$smenu = strval($_GET["sel"]);
switch($smenu){
case "404": include("pages/_404.php"); break; // Страница ошибки
case "stats": include("pages/account/_story.php"); break; // Статистика
case "referals": include("pages/account/_referals.php"); break; // Рефералы
case "farm": include("pages/account/_farm.php"); break; // Моя ферма
case "canteen": include("pages/account/_canteen.php"); break; // Казарма воинов
case "swap": include("pages/account/_swap.php"); break; // Обменный пункт
case "market": include("pages/account/_market.php"); break; // Рынок
case "payment": include("pages/account/_payment.php"); break; // Выплата WM
case "payment_qiwi": include("pages/account/_payment_qiwi.php"); break; // Выплата QIWI
case "webm": include("pages/account/_webm.php"); break; // WM
case "insert": include("pages/account/_insert.php"); break; // Пополнение баланса
case "insertwm": include("pages/account/_insertwm.php"); break; // Пополнение Webmoney
case "wmrest": include("pages/account/_wmrest.php"); break; // Пополнение Webmoney
case "payx": include("pages/account/_payx.php"); break; // Пополнение баланса (атмена)
case "payv": include("pages/account/_payv.php"); break; // Пополнение баланса (успешно)
case "insertwm": include("pages/account/_insertwm.php"); break; // Пополнение баланса WebMoney
case "qiwi2": include("pages/account/_qiwi2.php"); break; // Qiwi
case "config": include("pages/account/_config.php"); break; // Настройки
case "pm": include("pages/account/_pm.php"); break; // Внутренняя почта
case "chat": include("pages/account/_chat.php"); break; // ЧАТ
case "bonus": include("pages/account/_bonus.php"); break; // Ежедневный бонус
case "bonus2": include("pages/account/_bonus2.php"); break; // Бонус с риском
case "back": include("pages/account/_back.php"); break; // Накопительный банк
case "bonus_lider": include("pages/account/_bonus_lider.php"); break; // Бонус лидерам
case "lottery": include("pages/account/_lottery.php"); break; // Лотерея
case "gono4ki": include("pages/account/_gono4ki.php"); break; // Гонки машин
case "game2":include("pages/account/_game2.php"); break; // Под 7 Над
case "cards": include("pages/account/_cards.php"); break; // Три туза
case "pin": include("pages/account/_pin.php"); break; // Пинкоды
case "ruletka": include("pages/account/_ruletka.php"); break; // Русская рулетка
case "auc": include("pages/account/_auc.php"); break; // аукцион
case "kamikadze": include("pages/account/_kamikadze.php"); break; // Камикадзе
case "kamikadze2": include("pages/account/_kamikadze2.php"); break; // Камикадзе2
case "slavemarket": include("pages/account/_slavemarket.php"); break; // Контора
case "buywarrior": include("pages/account/_buywarrior.php"); break; // Покупка авто
case "buyslave": include("pages/account/_buyslave.php"); break; // Найм механиков
case "home": include("pages/account/_home.php"); break; // Хижины рабов
case "treasury": include("pages/account/_treasury.php"); break; // Хижины рабов
case "arena": include("pages/account/_arena.php"); break; // Арена
case "bank": include("pages/account/_bank.php"); break; // Банк
case "swap2": include("pages/account/_swap2.php"); break; // Обменный пункт
case "pub": include("pages/account/_pub.php"); break; // Кабак
case "casino": include("pages/account/_casino.php"); break; // Казино
case "rul": include("pages/account/_rul.php"); break; // Напёрстки
case "donations": include("pages/account/_donations.php"); break; // Донатионс
case "payment_pm": include("pages/account/_payment_pm.php"); break; // Выплаты на Perfect Monye
case "payment_payeer": include("pages/account/_payment_payeer.php"); break; // Выплаты на Payeer
case "exit": @session_destroy(); Header("Location: /"); return; break; // Казна
# Страница ошибки
default: @include("pages/_404.php"); break;
}
}else @include("pages/account/_user_account.php");
?>