Jelix\Installer\Installer::completeInstallStatus PHP Method

completeInstallStatus() protected method

protected completeInstallStatus ( )
    protected function completeInstallStatus()
    {
        foreach ($this->entryPoints as $epId => $ep) {
            if ($ep->sameConfigAs) {
                // let's copy the installation information of the other entry point
                $values = $this->installerIni->getValues($ep->sameConfigAs);
                $this->installerIni->setValues($values, $epId);
                $this->ok('install.entrypoint.installed', $epId);
            }
        }
    }