Ejemplo n.º 1
0
}
if ($uri == '' or $uri == 'index.php') {
    // Главная страница
    $control = new EventsController();
    $response = $control->list_action();
} elseif ($uri == 'pupils' and isset($_REQUEST["event"])) {
    if (empty($_REQUEST['order_by'])) {
        $_REQUEST['order_by'] = 'id';
    }
    // Список зарег. пользователей
    $control = new UsersController();
    $response = $control->plist_action($_REQUEST["event"], $_REQUEST['order_by']);
} elseif ($uri == 'login') {
    // Форма входа
    $control = new UsersController();
    $response = $control->login_action();
} elseif ($uri == 'logout') {
    // Выход
    $control = new UsersController();
    $response = $control->logout_action();
} elseif ($uri == 'admin' and $access_granted) {
    // Административная часть
    $control = new UsersController();
    $response = $control->admin_action();
} elseif ($uri == 'add' and $access_granted) {
    // Новое мероприятие
    $control = new EventsController();
    $response = $control->add_action();
} elseif ($uri == 'event' and $access_granted and isset($_REQUEST["remove"])) {
    // Удаление мероприятия
    $control = new EventsController();