コード例 #1
0
ファイル: index.php プロジェクト: riki343/MyPrivateDesktop
date_default_timezone_set('UTC');
include BASE_PATH . '/modules/configuration.php';
initConfiguration();
// buffer unless we are in the download module (it will handle the buffering itself)
if (v($_REQUEST["type"]) != "dl") {
    include_once BASE_PATH . "/lib/output.php";
    Output::buffer();
} else {
    $_REQUEST["type"] = 'download';
}
if (defined("TRACE_FILEPATH") && TRACE_FILEPATH && defined("TRACE_MESSAGES") && TRACE_MESSAGES) {
    ini_set("error_log", TRACE_FILEPATH);
}
include_once BASE_PATH . "/lib/util.php";
require BASE_PATH . '/modules/auth.php';
$auth_module = new MyWebSQL_Authentication();
if (!$auth_module->authenticate()) {
    if (v($_REQUEST["q"]) == "wrkfrm") {
        echo view('session_expired');
    } else {
        include BASE_PATH . "/modules/splash.php";
        $form = view('auth', array('LOGINID' => htmlspecialchars($auth_module->getUserName()), 'SERVER_NAME' => htmlspecialchars($auth_module->getCustomServer()), 'SERVER_TYPE' => htmlspecialchars($auth_module->getCustomServerType())));
        echo getSplashScreen($auth_module->getError(), $form);
    }
    Output::flush();
    exit;
}
unset($auth_module);
$_db_info = getDBClass();
include_once $_db_info[0];
$_db_class = $_db_info[1];
コード例 #2
0
ファイル: index.php プロジェクト: onyxnz/quartzpos
date_default_timezone_set('UTC');
include BASE_PATH . '/modules/configuration.php';
initConfiguration();
// buffer unless we are in the download module (it will handle the buffering itself)
if (v($_REQUEST["type"]) != "dl") {
    include_once BASE_PATH . "/lib/output.php";
    Output::buffer();
} else {
    $_REQUEST["type"] = 'download';
}
if (defined("TRACE_FILEPATH") && TRACE_FILEPATH && defined("TRACE_MESSAGES") && TRACE_MESSAGES) {
    ini_set("error_log", TRACE_FILEPATH);
}
include_once BASE_PATH . "/lib/util.php";
require BASE_PATH . '/modules/auth.php';
$auth_module = new MyWebSQL_Authentication();
if (!$auth_module->authenticate()) {
    if (v($_REQUEST["q"]) == "wrkfrm") {
        echo view('session_expired');
    } else {
        include BASE_PATH . "/modules/splash.php";
        $form = view('auth', array('LOGINID' => htmlspecialchars($auth_module->getUserName())));
        echo getSplashScreen($auth_module->getError(), $form);
    }
    Output::flush();
    exit;
}
unset($auth_module);
$_db_info = getDBClass();
include_once $_db_info[0];
$_db_class = $_db_info[1];