<?php header("Content-Type: text/html; charset=UTF-8"); session_cache_limiter('nocache'); include_once("config.php"); // Check login include_once($UTIL_DIR . "/login.php"); checklogin(); if($yeah) { include_once($UTIL_DIR . "/cache.php"); $cache = new Cache($DATA_DIR . "/cache.xml"); $cache->rebuild(); } // Catch the modes that must not output any html. if($current_user) { switch($mode) { case "imagecache": include_once($UTIL_DIR. "/imagecache.php"); getCachedImage($uri); return; case "file": include_once($UTIL_DIR. "/file.php"); if($preview) getFilePreview($fid); else getFile($fid); return; } } include_once($UTIL_DIR . "/clientinfo.php"); ?> <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title><?php echo $FORUM_TITLE; ?></title> <meta name="MSSmartTagsPreventParsing" content="true"/> <meta http-equiv="Content-Type" content="text/html"/> <meta http-equiv="Pragma" content="no-cache"> <meta http-equiv="Expires" content="-1"> <link rel="author" title="Bent Bisballe Nyeng" href="http://www.aasimon.org"/> <link rel="stylesheet" type="text/css" href="forum.css"/> <?php if($mode == "editor") {?> <script language="javascript" src="lib.js" type="text/javascript"></script><?php } ?> </head> <body> <?php function menu($pos, $unread) { global $current_user; if($unread) $newposts = "newposts"; else $newposts = "nonewposts"; $str .=" <div id=\"menu_".$pos."\" class=\"menu\">\n"; $str .=" <a href=\"?mode=forum\"><span class=\"".$newposts."\"> </span>Forum</a>\n"; $str .=" <a href=\"?mode=filehandler\">Filehandler</a>\n"; $str .=" <a href=\"?mode=calendar\">Calendar</a>\n"; $str .=" <a href=\"?mode=addressbook\">Addressbook</a>\n"; $str .=" <a href=\"?mode=profile\">Profile</a>\n"; $str .=" <a href=\"?mode=tasks\">Tasks</a>\n"; if($current_user->uid == 0) $str .=" <a href=\"?mode=diagnostics\">Diagnostics</a>\n"; $str .=" </div>\n"; return $str; } // Globals: // $fid // $tid // $pid // $task if($current_user) { $str = ""; $str .= " <p>Logged in as: " . $current_user->name . " - <a href=\"?action=logout\">Logout</a></p>\n"; switch($mode) { case "profile": include_once($UTIL_DIR. "/profile.php"); $str .= profile(); break; case "tasks": include_once($UTIL_DIR. "/tasks.php"); $str .= tasks(); break; case "calendar": include_once($UTIL_DIR. "/calendar.php"); $str .= calendar(); break; case "addressbook": include_once($UTIL_DIR. "/addressbook.php"); $str .= addressbook(); break; case "editor": include_once($UTIL_DIR. "/editor.php"); $str .= editor(); break; case "edit": include_once($UTIL_DIR. "/edit.php"); $str .= ""; break; case "filehandler": include_once($UTIL_DIR. "/filehandler.php"); $str .= filehandler(); break; case "diagnostics": include_once($UTIL_DIR. "/diagnostics.php"); $str .= ""; break; default: case "view": include_once($UTIL_DIR. "/view.php"); $str .= viewForum(); if(!isset($GLOBALS['fid'])) { include_once($UTIL_DIR. "/calendar.php"); $str .= calendar(); } break; } if($mode != "edit") { include_once($UTIL_DIR . "/forums.php"); $forums = new Forums($FORUMS_DIR . "/forums.xml"); $unreadPosts = false; foreach($forums->forums as $forum) { $unreadPosts |= $forum->newStuff; } echo menu("top", $unreadPosts). $str. menu("bottom", $unreadPosts); } else { echo $str; } } else { ?> <form action="?action=login" method="post"> <p>UserID: <input name="current_username"/></p> <p>Password: <input name="current_password" type="password"/></p> <p><button type="submit">Login</button></p> </form> <?php } ?> </body> </html>