Esempio n. 1
0
        if ($e instanceof IOException) {
            IO::out('IO error : ' . $e->getMessage(), IO::MESSAGE_FAIL);
        } else {
            IO::out($e, IO::MESSAGE_FAIL);
        }
        exit(254);
    }
    //}}}
    // {{{ initCore
    /**
     * Создает окружение для работы.
     *
     * Подключает классы и файлы,
     * инициализирует основные подсистемы движка(базу данных, конфигурацию итд).
     */
    static function initCore()
    {
    }
}
// }}}
/**
 * Выполнение
 */
try {
    $c = new Console();
    $c->Init();
    $r = $c->process();
    exit($r);
} catch (CasseaException $e) {
    Console::processException($e);
}
Esempio n. 2
0
<?php

require_once "./smarty.php";
require_once "./Console.php";
require_once "./models/User.php";
session_start();
switch ($_GET["main"]) {
    case "console":
        Console::process();
        break;
    case "login":
        User::process_login();
        break;
    case "register":
        User::process_register();
        break;
    default:
        break;
}