Jelix\Installer\Installer::installModules PHP 메소드

installModules() 공개 메소드

install given modules even if they don't have an access property > 0
public installModules ( array $modulesList, string $entrypoint = null ) : boolean
$modulesList array array of module names
$entrypoint string the entrypoint name as it appears in project.xml or null if modules should be installed for all entry points
리턴 boolean true if the installation is ok
    public function installModules($modulesList, $entrypoint = null)
    {
        return $this->_singleModules(Resolver::ACTION_INSTALL, $modulesList, $entrypoint);
    }