Piwik\Plugins\Installation\Controller::welcome PHP Method

welcome() public method

Can also display an error message when there is a failure early (eg. DB connection failed)
public welcome ( )
    function welcome()
    {
        // Delete merged js/css files to force regenerations based on updated activated plugin list
        Filesystem::deleteAllCacheOnUpdate();
        $this->checkPiwikIsNotInstalled();
        $view = new View('@Installation/welcome', $this->getInstallationSteps(), __FUNCTION__);
        $view->showNextStep = true;
        return $view->render();
    }