public function actionPhpConfig()
 {
     $resultsArr = PhpConfigManager::getTestResultsArr();
     $resultsArrCheck = PhpConfigManager::checkTestResultsArrState($resultsArr);
     if ($resultsArrCheck == PhpConfigManager::STATE_ALL_OK) {
         //pokud jsou všechny direktivy v pořádku, provedeme přesměrování
         $this->redirect($this->getNextStep('phpConfig'));
     }
     $this->template->resultsArrCheck = $resultsArrCheck;
     $this->template->resultsArr = $resultsArr;
     $this->template->continueUrl = $this->getNextStep('phpConfig');
 }