From 415e90a2e059ea32f6851dfb9b3c018b0a731a81 Mon Sep 17 00:00:00 2001
From: deva
Date: Mon, 6 Oct 2008 18:13:56 +0000
Subject: Put the webpages in.
---
forum/htdocs/index.php | 89 ++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 89 insertions(+)
create mode 100644 forum/htdocs/index.php
(limited to 'forum/htdocs/index.php')
diff --git a/forum/htdocs/index.php b/forum/htdocs/index.php
new file mode 100644
index 0000000..a452f20
--- /dev/null
+++ b/forum/htdocs/index.php
@@ -0,0 +1,89 @@
+
+
+
+
+
+ExecutionForum
+
+
+
+
+
+
+
+
+
+Logged in as: " . $current_user->name . " - Logout
";
+
+ switch($mode) {
+ case "test":
+ // include_once($UTIL_DIR. "/notify.php");
+ // notify("Test", "Test");
+ break;
+
+ case "profile":
+ include_once($UTIL_DIR. "/profile.php");
+ break;
+
+ case "calendar":
+ include_once($UTIL_DIR. "/calendar.php");
+ break;
+
+ case "editor":
+ include_once($UTIL_DIR. "/editor.php");
+ break;
+
+ case "edit":
+ include_once($UTIL_DIR. "/edit.php");
+ break;
+
+ case "files":
+ include_once($UTIL_DIR. "/filehandler.php");
+ break;
+
+ case "view":
+ default:
+ include_once($UTIL_DIR. "/view.php");
+ break;
+ }
+} else {
+?>
+
+
+
+
--
cgit v1.2.3