예제 #1
0
파일: index.php 프로젝트: jerryhanks/Melnet
if (!$auth->isLogedin($token, $id)) {
    //Not logged in, send to login page.
    $msg = isset($_GET['loginerrorfeed']) ? $_GET["loginerrorfeed"] : "";
    $smarty->assign("message", $msg);
    go_homeforlogin();
    $smarty->display("index.tpl");
} else {
    //user is loged in and making request
    if (isset($_GET["view"])) {
        $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 {
예제 #2
0
                     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();
                             }
                         }
                     }
                 }
             }
         }
     }
 }