File: /home/awaldron/www/archive/demo/_pagestart.php
<?php
// Check if Site is down for maintenance...
if (whois() == "falcon1") exit;
if (SITE_LIVE == 0) {
if (!admin_panel($_SESSION["auth_user"])) {
echo "<br><br><br><br>\n<center><h2>We're Sorry...</h2><h3>The Intranet is Currently Down for Maintenance.</h3>\n";
exit;
} else echo notice("The intranet is down for maintenance...");
}
if (!is_logged()) auto_login(); // Try Auto-Login with cookie
add_log($page_title);
if (strstr($_SERVER["HTTP_USER_AGENT"],"BlackBerry")) {
define('MOBILE',TRUE);
include("_pagestart_mobile.php");
} else {
define('MOBILE',FALSE);
include("_pagestart_web.php");
}
?>