Jelix\Core\Config\Compiler::prepareConfig PHP Метод

prepareConfig() защищенный Метод

fill some config properties with calculated values
protected prepareConfig ( boolean $allModuleInfo )
$allModuleInfo boolean may be true for the installer, which needs all informations else should be false, these extra informations are not needed to run the application
    protected function prepareConfig($allModuleInfo)
    {
        $this->checkMiscParameters($this->config);
        $this->getPaths($this->config->urlengine, $this->pseudoScriptName, $this->isCli);
        $this->modulesInfos = $this->_loadModulesInfo($this->config, $allModuleInfo);
        $this->_loadPluginsPathList($this->config);
        $this->checkCoordPluginsPath($this->config);
        $this->runConfigCompilerPlugins($this->config, $this->modulesInfos);
    }