コード例 #1
0
 function __construct()
 {
     parent::__construct();
     $this->page = "RoleManagement";
     if (check_permission($this->page, "n")) {
         $this->goFailPage();
     }
 }
コード例 #2
0
ファイル: Dashboard.php プロジェクト: ammalesy/SurveyBackend
 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();
     }
 }
コード例 #4
0
 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();
 }