Jelix\Installer\Installer::uninstallModules PHP Method

uninstallModules() public method

uninstall given modules
public uninstallModules ( 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 uninstalled for all entry points
return boolean true if the uninstallation is ok
    public function uninstallModules($modulesList, $entrypoint = null)
    {
        return $this->_singleModules(Resolver::ACTION_REMOVE, $modulesList, $entrypoint);
    }