Started working on a seperate side nav for admin settings to cleanup the main side nav

This commit is contained in:
johnnyq
2021-08-19 13:06:45 -04:00
parent 35747edadf
commit 23bc3ea417
2 changed files with 91 additions and 0 deletions

View File

@@ -45,6 +45,8 @@ scratch. This page gets rid of all links and provides the needed markup only.
if(basename(parse_url($_SERVER["REQUEST_URI"], PHP_URL_PATH)) == "client.php"){
include("client_side_nav.php");
}elseif(basename(parse_url($_SERVER["REQUEST_URI"], PHP_URL_PATH)) == "settings-general.php"){
include("admin_side_nav.php");
}else{
include("side_nav.php");
}