Esempio n. 1
0
 * Default Styles
 */
\Lobby::addStyle("home", "/includes/lib/core/CSS/font.css");
\Lobby::addStyle("main", "/includes/lib/core/CSS/main.css");
/**
 * Some checking to make sure Lobby works fine
 */
if (!is_writable(L_DIR) || !is_writable(APPS_DIR)) {
    $GLOBALS['initError'] = array("Wrong Permissions", "The permission of Lobby is not correct. All you have to do is change the permission of <blockquote>" . L_DIR . "</blockquote>to read and write (0775).");
    if (\Lobby::$sysinfo['os'] == "linux") {
        $GLOBALS['initError'][1] = $GLOBALS['initError'][1] . "<p clear>On Linux systems, do this in terminal : <blockquote>sudo chown \${USER}:www-data " . L_DIR . " -R && sudo chmod 0775 " . L_DIR . " -R</blockquote></p>";
    }
}
if (isset($GLOBALS['initError'])) {
    echo "<html><head>";
    \Lobby::$js = array();
    \Lobby::head();
    echo "</head><body><div class='workspace'><div class='contents'>";
    ser($GLOBALS['initError'][0], $GLOBALS['initError'][1]);
    echo "</div></div></body></html>";
    exit;
}
\Lobby::curPage(true);
/**
 * Add the <head> files if it's not the install page
 */
if (\Lobby::curPage() != "/admin/install.php") {
    /**
     * Styles
     */
    \Lobby::addStyle("jqueryui", "/includes/lib/jquery/jquery-ui.css");