$MENU_ITEMS["30_Rules"]["name"] = "Rules";
$MENU_ITEMS["10_Interfaces"]["link"] = "$BASE_URL/interfaces";
$MENU_ITEMS["10_Interfaces"]["name"] = "Interfaces";
+$MENU_ITEMS["05_Admin"]["link"] = "$BASE_URL/admin";
+$MENU_ITEMS["05_Admin"]["name"] = "Admin";
// if i believed in name spacing in php, i'd use it.
error_log("cbfwweb loaded");
$conf->loadConfig();
$rconfig = $conf->getConfig();
- if($rconfig["status"] != "conf") cbfw_startinstaller();
+ if($rconfig["status"] != "conf") {
+ cbfw_startinstaller();
+ return 0;
+ }
if(isset($_REQUEST["q"])) {
case "rules":
$bodyFunction = "CBFWRulesPage";
break;
+ case "admin":
+ $bodyFunction = "CBFWAdminPage";
+ break;
default:
$bodyFunction = findUrl($url_s);
}
}
}
+
+function CBFWAdminPage($urls)
+{
+ echo "im an admin page";
+}
+
function CBFBuildHomePage($urls)
{
echo "Must remember this, gotta rules could apply to multiple zones not just one<br>";