コード例 #1
0
ファイル: Bootstrap.php プロジェクト: oat-sa/tao-core
 /**
  *  Start the MVC Loop from the ClearFW
  *  @throws ActionEnforcingException in case of wrong module or action
  *  @throws tao_models_classes_UserException when a request try to acces a protected area
  */
 protected function mvc()
 {
     $re = \common_http_Request::currentRequest();
     $fc = new TaoFrontController();
     $fc->legacy($re);
 }
コード例 #2
0
ファイル: Bootstrap.php プロジェクト: nagyist/tao-core
 /**
  *  Start the MVC Loop from the ClearFW
  *  @throws ActionEnforcingException in case of wrong module or action
  *  @throws tao_models_classes_UserException when a request try to acces a protected area
  */
 protected function mvc()
 {
     $re = new HttpRequest();
     $fc = new TaoFrontController($re);
     $fc->loadModule();
 }