예제 #1
0
 protected function additionalSystemCheck($form)
 {
     $serviceCheckResultsDataForDisplay = CheckServicesUtil::checkServicesAndGetResultsDataForDisplay(true, $form);
     if (count($serviceCheckResultsDataForDisplay[CheckServicesUtil::CHECK_FAILED][ServiceHelper::REQUIRED_SERVICE]) && !defined('IS_TEST')) {
         $checkServicesView = new InstallAdditionalCheckServicesView($this->getId(), $this->getModule()->getId(), $serviceCheckResultsDataForDisplay);
         $view = new InstallPageView($checkServicesView);
         echo $view->render();
         Yii::app()->end(0, false);
     }
     $this->actionRunInstallation($form);
     Yii::app()->end(0, false);
 }