$view = htmlspecialchars($_GET["view"]); if ($view == "homeView") { go_homeforlogedin(); } else { if ($view == "adminView") { //include_once 'adminmainpage.php'; if (!$auth->isAdmin($_SESSION["user_id"])) { //direct user to the admin main page header("Location:../melnet/admin"); } else { go_homeforlogedin(); } } else { if ($view == "totalView") { //check if user has acces to total view if ($auth->isUser1($auth->selectSessionData($_SESSION["user_id"]))) { //direct user to the total homepage header("Location:../melnet/total"); } else { go_homeforlogedin(); } } else { if ($view == "ubnkView") { //ceck if user has acces to view uba if ($auth->isUser1($auth->selectSessionData($_SESSION["user_id"]))) { //direct user to the admin main page header("Location:../melnet/ubnk"); } else { go_homeforlogedin(); //add error notice }
go_homeforlogedin(); } else { if ($view == "userCourses") { $course = new Course(); $smarty->assign('courses', $course->displayAllCourse()); $smarty->assign('title', '..::ECE_E-Learning:userCouses'); $smarty->assign('mainContent', $smarty->fetch("userCourses.tpl")); } else { if ($view == "userEvaluation") { $smarty->assign('evalHome', $eval->goHome()); $smarty->assign('mainContent', $smarty->fetch("userEvaluation.tpl")); $smarty->assign('title', '..::ECE_E-Learning:userCourses'); } else { if ($view == "adminView") { //include_once 'adminmainpage.php'; if ($auth->isAdmin($auth->selectSessionData($id))) { //direct user to the admin main page header("Location:../usr/admin/?suid=" . $id . "token=" . $token . "&view=enable_disableUser"); } else { go_homeforlogedin(); } } else { go_homeforlogedin(); } } } } } } } }