示例#1
0
 /**
  *  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
 /**
  *  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();
 }