ForkCMS\Bundle\InstallerBundle\Controller\InstallerController::step1Action PHP Method

step1Action() public method

public step1Action ( ) : RedirectResponse | Response
return Symfony\Component\HttpFoundation\RedirectResponse | Symfony\Component\HttpFoundation\Response
    public function step1Action()
    {
        $this->checkInstall();
        // if all our requirements are met, go to the next step
        $requirementsChecker = $this->get('forkcms.requirements.checker');
        if ($requirementsChecker->passes()) {
            return $this->redirect($this->generateUrl('install_step2'));
        }
        return $this->render('ForkCMSInstallerBundle:Installer:step1.html.twig', array('checker' => $requirementsChecker, 'rootDir' => realpath($this->container->getParameter('site.path_www'))));
    }