示例#1
0
 function __construct()
 {
     parent::__construct();
     $this->page = "RoleManagement";
     if (check_permission($this->page, "n")) {
         $this->goFailPage();
     }
 }
示例#2
0
 function __construct()
 {
     parent::__construct();
     $this->page = "Dashboard";
     if ($this->isSelectedProject() == FALSE) {
         redirect("PreviewSurvey");
     }
 }
示例#3
0
 function __construct()
 {
     parent::__construct();
     $this->page = "AssignProject";
     if (check_permission("UserManagement", "n")) {
         $this->goFailPage();
     }
 }
 function __construct()
 {
     parent::__construct();
     $this->page = "QuestionManagement";
     if (check_permission($this->page, "n")) {
         $this->goFailPage();
     }
     if ($this->isSelectedProject() == FALSE) {
         redirect("PreviewSurvey");
     }
 }
示例#5
0
 function __construct()
 {
     parent::__construct();
     $this->page = "SurveyResult";
     if (check_permission($this->page, "n")) {
         $this->goFailPage();
     }
     if ($this->isSelectedProject() == FALSE) {
         redirect("PreviewSurvey");
     }
     //$this->output->enable_profiler(TRUE);
 }
示例#6
0
 function __construct()
 {
     parent::__construct();
 }