summaryrefslogtreecommitdiffstats
path: root/management-interface/php/functions.php
diff options
context:
space:
mode:
Diffstat (limited to 'management-interface/php/functions.php')
-rw-r--r--management-interface/php/functions.php22
1 files changed, 0 insertions, 22 deletions
diff --git a/management-interface/php/functions.php b/management-interface/php/functions.php
deleted file mode 100644
index f84c097..0000000
--- a/management-interface/php/functions.php
+++ /dev/null
@@ -1,22 +0,0 @@
-<?php
-
-# get the menu item
-switch ($_GET["m"]) {
-case "home":
- $_item = "home";
- break;
-case "login":
- $_item = "login";
- break;
-case "user":
- $_item = "user";
- break;
-case "about":
- $_item = "about";
- break;
-default:
- $_item = "home";
- break;
-}
-
-?>