diff --git a/setup/AnalyzeInstallation.php b/setup/AnalyzeInstallation.php new file mode 100644 index 000000000..192d3a7e0 --- /dev/null +++ b/setup/AnalyzeInstallation.php @@ -0,0 +1,130 @@ + + * 'iTop' => array( + * 'installed_version' => ... (could be empty in case of a fresh install) + * 'available_version => ... + * ) + * => array( + * 'installed_version' => ... + * 'available_version' => ... + * 'install' => array( + * 'flag' => SETUP_NEVER | SETUP_OPTIONAL | SETUP_MANDATORY + * 'message' => ... + * ) + * 'uninstall' => array( + * 'flag' => SETUP_NEVER | SETUP_OPTIONAL | SETUP_MANDATORY + * 'message' => ... + * ) + * 'label' => ... + * 'dependencies' => array(, , ...) + * 'visible' => true | false + * ) + * ) + * @throws \Exception + */ + public function AnalyzeInstallation(?Config $oConfig, mixed $modulesPath, bool $bAbortOnMissingDependency = false, ?array $aModulesToLoad = null) + { + $aRes = [ + ROOT_MODULE => [ + 'installed_version' => '', + 'available_version' => ITOP_VERSION_FULL, + 'name_code' => ITOP_APPLICATION, + ], + ]; + + $aDirs = is_array($modulesPath) ? $modulesPath : [$modulesPath]; + if (! is_null($this->aAvailableModules)) { + //test only + $aAvailableModules = $this->aAvailableModules; + } else { + $aAvailableModules = ModuleDiscovery::GetAvailableModules($aDirs, $bAbortOnMissingDependency, $aModulesToLoad); + } + + foreach ($aAvailableModules as $sModuleId => $aModuleInfo) { + list($sModuleName, $sModuleVersion) = ModuleDiscovery::GetModuleName($sModuleId); + + $aModuleInfo['installed_version'] = ''; + $aModuleInfo['available_version'] = $sModuleVersion; + + if ($aModuleInfo['mandatory']) { + $aModuleInfo['install'] = [ + 'flag' => MODULE_ACTION_MANDATORY, + 'message' => 'the module is part of the application', + ]; + } else { + $aModuleInfo['install'] = [ + 'flag' => MODULE_ACTION_OPTIONAL, + 'message' => '', + ]; + } + $aRes[$sModuleName] = $aModuleInfo; + } + + $aCurrentlyInstalledModules = ModuleInstallationService::GetInstance()->ReadFromDB($oConfig); + + // Adjust the list of proposed modules + foreach ($aCurrentlyInstalledModules as $sModuleName => $aModuleDB) { + if ($sModuleName == ROOT_MODULE) { + $aRes[$sModuleName]['installed_version'] = $aModuleDB['version']; + continue; + } + + if (!array_key_exists($sModuleName, $aRes)) { + // A module was installed, it is not proposed in the new build... skip + continue; + } + + $aRes[$sModuleName]['installed_version'] = $aModuleDB['version']; + + if ($aRes[$sModuleName]['mandatory']) { + $aRes[$sModuleName]['uninstall'] = [ + 'flag' => MODULE_ACTION_IMPOSSIBLE, + 'message' => 'the module is part of the application', + ]; + } else { + $aRes[$sModuleName]['uninstall'] = [ + 'flag' => MODULE_ACTION_OPTIONAL, + 'message' => '', + ]; + } + } + + return $aRes; + } +} diff --git a/setup/ModuleInstallationService.php b/setup/ModuleInstallationService.php new file mode 100644 index 000000000..9817fdb67 --- /dev/null +++ b/setup/ModuleInstallationService.php @@ -0,0 +1,159 @@ +aSelectInstall)) { + //test only + $aSelectInstall = $this->aSelectInstall; + } else { + CMDBSource::InitFromConfig($oConfig); + + //read db module installations + $aSelectInstallOld = CMDBSource::QueryToArray("SELECT * FROM ".$oConfig->Get('db_subname')."priv_module_install"); + //file_put_contents(APPROOT."/tests/php-unit-tests/unitary-tests/setup/ressources/priv_modules.json", json_encode($aSelectInstallOld, JSON_PRETTY_PRINT)); + + $iRootId = CMDBSource::QueryToScalar("SELECT max(parent_id) FROM ".$oConfig->Get('db_subname')."priv_module_install"); + $sDbSubName = $oConfig->Get('db_subname'); + // Get the latest installed modules, without the "root" ones (iTop version and datamodel version) + $sSQL = <<ComputeInstalledModules($aSelectInstall); + } + + private function ComputeInstalledModulesLegacy(array $aSelectInstall): array + { + $aInstallByModule = []; // array of => array ('installed' => timestamp, 'version' => ) + $iRootId = 0; + foreach ($aSelectInstall as $aInstall) { + if (($aInstall['parent_id'] == 0) && ($aInstall['name'] != 'datamodel')) { + // Root module, what is its ID ? + $iId = (int) $aInstall['id']; + if ($iId > $iRootId) { + $iRootId = $iId; + } + } + } + + foreach ($aSelectInstall as $aInstall) { + //$aInstall['comment']; // unsused + $iInstalled = strtotime($aInstall['installed']); + $sModuleName = $aInstall['name']; + $sModuleVersion = $aInstall['version']; + if ($sModuleVersion == '') { + // Though the version cannot be empty in iTop 2.0, it used to be possible + // therefore we have to put something here or the module will not be considered + // as being installed + $sModuleVersion = '0.0.0'; + } + + if ($aInstall['parent_id'] == 0) { + $sModuleName = ROOT_MODULE; + } elseif ($aInstall['parent_id'] != $iRootId) { + // Skip all modules belonging to previous installations + continue; + } + + if (array_key_exists($sModuleName, $aInstallByModule)) { + if ($iInstalled < $aInstallByModule[$sModuleName]['installed']) { + continue; + } + } + + if ($aInstall['parent_id'] == 0) { + $aInstallByModule[$sModuleName]['installed_version'] = $sModuleVersion; + } + + $aInstallByModule[$sModuleName]['installed'] = $iInstalled; + $aInstallByModule[$sModuleName]['version'] = $sModuleVersion; + } + + return $aInstallByModule; + } + + private function ComputeInstalledModules(array $aSelectInstall): array + { + $aInstallByModule = []; // array of => array ('installed' => timestamp, 'version' => ) + + //module installation datetime is mostly the same for all modules + //unless there was issue recording things in DB + $sFirstDatetime = null; + $iFirstTime = -1; + foreach ($aSelectInstall as $aInstall) { + //$aInstall['comment']; // unsused + $sDatetime = $aInstall['installed']; + + if (is_null($sFirstDatetime)) { + $sFirstDatetime = $sDatetime; + $iFirstTime = strtotime($sDatetime); + $iInstalled = $iFirstTime; + } elseif ($sDatetime === $sFirstDatetime) { + $iInstalled = $iFirstTime; + } else { + $sDatetime = $aInstall['installed']; + $iInstalled = strtotime($sDatetime); + } + + $sModuleName = $aInstall['name']; + $sModuleVersion = $aInstall['version']; + if ($sModuleVersion == '') { + // Though the version cannot be empty in iTop 2.0, it used to be possible + // therefore we have to put something here or the module will not be considered + // as being installed + $sModuleVersion = '0.0.0'; + } + + if ($aInstall['parent_id'] == 0) { + $aInstallByModule[ROOT_MODULE] = [ + 'installed_version' => $sModuleVersion, + 'installed' => $iInstalled, + 'version' => $sModuleVersion, + ]; + } else { + $aInstallByModule[$sModuleName] = [ + 'installed' => $iInstalled, + 'version' => $sModuleVersion, + ]; + } + } + + return $aInstallByModule; + } +} diff --git a/setup/modulediscovery.class.inc.php b/setup/modulediscovery.class.inc.php index 2d2e8bb72..6c334a90d 100755 --- a/setup/modulediscovery.class.inc.php +++ b/setup/modulediscovery.class.inc.php @@ -120,10 +120,6 @@ class ModuleDiscovery if (is_null($aArgs) || ! is_array($aArgs)) { throw new ModuleFileReaderException("Error parsing module file args", 0, null, $sFilePath); } - if (!array_key_exists('itop_version', $aArgs)) { - // Assume 1.0.2 - $aArgs['itop_version'] = '1.0.2'; - } foreach (array_keys(self::$m_aModuleArgs) as $sArgName) { if (!array_key_exists($sArgName, $aArgs)) { throw new Exception("Module '$sId': missing argument '$sArgName'"); diff --git a/setup/runtimeenv.class.inc.php b/setup/runtimeenv.class.inc.php index 87cc202f0..b383dbfbc 100644 --- a/setup/runtimeenv.class.inc.php +++ b/setup/runtimeenv.class.inc.php @@ -32,6 +32,7 @@ require_once APPROOT."setup/modulediscovery.class.inc.php"; require_once APPROOT.'setup/modelfactory.class.inc.php'; require_once APPROOT.'setup/compiler.class.inc.php'; require_once APPROOT.'setup/extensionsmap.class.inc.php'; +require_once APPROOT.'setup/AnalyzeInstallation.php'; define('MODULE_ACTION_OPTIONAL', 1); define('MODULE_ACTION_MANDATORY', 2); @@ -145,12 +146,12 @@ class RunTimeEnvironment * @return array Array with the following format: * array => * 'iTop' => array( - * 'version_db' => ... (could be empty in case of a fresh install) - * 'version_code => ... + * 'installed_version' => ... (could be empty in case of a fresh install) + * 'available_version => ... * ) * => array( - * 'version_db' => ... - * 'version_code' => ... + * 'installed_version' => ... + * 'available_version' => ... * 'install' => array( * 'flag' => SETUP_NEVER | SETUP_OPTIONAL | SETUP_MANDATORY * 'message' => ... @@ -168,137 +169,7 @@ class RunTimeEnvironment */ public function AnalyzeInstallation($oConfig, $modulesPath, $bAbortOnMissingDependency = false, $aModulesToLoad = null) { - $aRes = [ - ROOT_MODULE => [ - 'version_db' => '', - 'name_db' => '', - 'version_code' => ITOP_VERSION_FULL, - 'name_code' => ITOP_APPLICATION, - ], - ]; - - $aDirs = is_array($modulesPath) ? $modulesPath : [$modulesPath]; - $aModules = ModuleDiscovery::GetAvailableModules($aDirs, $bAbortOnMissingDependency, $aModulesToLoad); - foreach ($aModules as $sModuleId => $aModuleInfo) { - list($sModuleName, $sModuleVersion) = ModuleDiscovery::GetModuleName($sModuleId); - if ($sModuleName == '') { - throw new Exception("Missing name for the module: '$sModuleId'"); - } - if ($sModuleVersion == '') { - // The version must not be empty (it will be used as a criteria to determine wether a module has been installed or not) - //throw new Exception("Missing version for the module: '$sModuleId'"); - $sModuleVersion = '1.0.0'; - } - - $sModuleAppVersion = $aModuleInfo['itop_version']; - $aModuleInfo['version_db'] = ''; - $aModuleInfo['version_code'] = $sModuleVersion; - - if (!in_array($sModuleAppVersion, ['1.0.0', '1.0.1', '1.0.2'])) { - // This module is NOT compatible with the current version - $aModuleInfo['install'] = [ - 'flag' => MODULE_ACTION_IMPOSSIBLE, - 'message' => 'the module is not compatible with the current version of the application', - ]; - } elseif ($aModuleInfo['mandatory']) { - $aModuleInfo['install'] = [ - 'flag' => MODULE_ACTION_MANDATORY, - 'message' => 'the module is part of the application', - ]; - } else { - $aModuleInfo['install'] = [ - 'flag' => MODULE_ACTION_OPTIONAL, - 'message' => '', - ]; - } - $aRes[$sModuleName] = $aModuleInfo; - } - - try { - $aSelectInstall = []; - if (! is_null($oConfig)) { - CMDBSource::InitFromConfig($oConfig); - $aSelectInstall = CMDBSource::QueryToArray("SELECT * FROM ".$oConfig->Get('db_subname')."priv_module_install"); - } - } catch (MySQLException $e) { - // No database or erroneous information - } - - // Build the list of installed module (get the latest installation) - // - $aInstallByModule = []; // array of => array ('installed' => timestamp, 'version' => ) - $iRootId = 0; - foreach ($aSelectInstall as $aInstall) { - if (($aInstall['parent_id'] == 0) && ($aInstall['name'] != 'datamodel')) { - // Root module, what is its ID ? - $iId = (int) $aInstall['id']; - if ($iId > $iRootId) { - $iRootId = $iId; - } - } - } - - foreach ($aSelectInstall as $aInstall) { - //$aInstall['comment']; // unsused - $iInstalled = strtotime($aInstall['installed']); - $sModuleName = $aInstall['name']; - $sModuleVersion = $aInstall['version']; - if ($sModuleVersion == '') { - // Though the version cannot be empty in iTop 2.0, it used to be possible - // therefore we have to put something here or the module will not be considered - // as being installed - $sModuleVersion = '0.0.0'; - } - - if ($aInstall['parent_id'] == 0) { - $sModuleName = ROOT_MODULE; - } elseif ($aInstall['parent_id'] != $iRootId) { - // Skip all modules belonging to previous installations - continue; - } - - if (array_key_exists($sModuleName, $aInstallByModule)) { - if ($iInstalled < $aInstallByModule[$sModuleName]['installed']) { - continue; - } - } - - if ($aInstall['parent_id'] == 0) { - $aRes[$sModuleName]['version_db'] = $sModuleVersion; - $aRes[$sModuleName]['name_db'] = $aInstall['name']; - } - - $aInstallByModule[$sModuleName]['installed'] = $iInstalled; - $aInstallByModule[$sModuleName]['version'] = $sModuleVersion; - } - - // Adjust the list of proposed modules - // - foreach ($aInstallByModule as $sModuleName => $aModuleDB) { - if ($sModuleName == ROOT_MODULE) { - continue; - } // Skip the main module - - if (!array_key_exists($sModuleName, $aRes)) { - // A module was installed, it is not proposed in the new build... skip - continue; - } - $aRes[$sModuleName]['version_db'] = $aModuleDB['version']; - - if ($aRes[$sModuleName]['install']['flag'] == MODULE_ACTION_MANDATORY) { - $aRes[$sModuleName]['uninstall'] = [ - 'flag' => MODULE_ACTION_IMPOSSIBLE, - 'message' => 'the module is part of the application', - ]; - } else { - $aRes[$sModuleName]['uninstall'] = [ - 'flag' => MODULE_ACTION_OPTIONAL, - 'message' => '', - ]; - } - } - - return $aRes; + return AnalyzeInstallation::GetInstance()->AnalyzeInstallation($oConfig, $modulesPath, $bAbortOnMissingDependency, $aModulesToLoad); } /** @@ -365,8 +236,7 @@ class RunTimeEnvironment // Determine the installed modules and extensions // $oSourceConfig = new Config(APPCONF.$sSourceEnv.'/'.ITOP_CONFIG_FILE); - $oSourceEnv = new RunTimeEnvironment($sSourceEnv); - $aAvailableModules = $oSourceEnv->AnalyzeInstallation($oSourceConfig, $aDirsToCompile); + $aAvailableModules = $this->AnalyzeInstallation($oSourceConfig, $aDirsToCompile); // Actually read the modules available for the target environment, // but get the selection from the source environment and finally @@ -404,7 +274,7 @@ class RunTimeEnvironment $sModuleRootDir = $oModule->GetRootDir(); $bIsExtra = $this->oExtensionsMap->ModuleIsChosenAsPartOfAnExtension($sModule, iTopExtension::SOURCE_REMOTE); if (array_key_exists($sModule, $aAvailableModules)) { - if (($aAvailableModules[$sModule]['version_db'] != '') || $bIsExtra && !$oModule->IsAutoSelect()) { //Extra modules are always unless they are 'AutoSelect' + if (($aAvailableModules[$sModule]['installed_version'] != '') || $bIsExtra && !$oModule->IsAutoSelect()) { //Extra modules are always unless they are 'AutoSelect' $aRet[$oModule->GetName()] = $oModule; } } @@ -648,7 +518,7 @@ class RunTimeEnvironment $oInstallRec->Set('comment', json_encode($aData)); $oInstallRec->Set('parent_id', 0); // root module $oInstallRec->Set('installed', $iInstallationTime); - $iMainItopRecord = $oInstallRec->DBInsertNoReload(); + $oInstallRec->DBInsertNoReload(); // Record main installation $oInstallRec = new ModuleInstallation(); @@ -669,7 +539,7 @@ class RunTimeEnvironment } $aModuleData = $aAvailableModules[$sModuleId]; $sName = $sModuleId; - $sVersion = $aModuleData['version_code']; + $sVersion = $aModuleData['available_version']; $sUninstallable = $aModuleData['uninstallable'] ?? 'yes'; $aComments = []; $aComments[] = $sShortComment; @@ -975,7 +845,7 @@ class RunTimeEnvironment { foreach ($aAvailableModules as $sModuleId => $aModule) { if (($sModuleId != ROOT_MODULE) && in_array($sModuleId, $aSelectedModules)) { - $aArgs = [MetaModel::GetConfig(), $aModule['version_db'], $aModule['version_code']]; + $aArgs = [MetaModel::GetConfig(), $aModule['installed_version'], $aModule['available_version']]; RunTimeEnvironment::CallInstallerHandler($aAvailableModules[$sModuleId], $sHandlerName, $aArgs); } } @@ -1039,7 +909,7 @@ class RunTimeEnvironment $sRelativePath = 'env-'.$this->sTargetEnv.'/'.basename($aModule['root_dir']); // Load data only for selected AND newly installed modules if (in_array($sModuleId, $aSelectedModules)) { - if ($aModule['version_db'] != '') { + if ($aModule['installed_version'] != '') { // Simulate the load of the previously loaded XML files to get the mapping of the keys if ($bSampleData) { $aPreviouslyLoadedFiles = static::MergeWithRelativeDir($aPreviouslyLoadedFiles, $sRelativePath, $aAvailableModules[$sModuleId]['data.struct']); diff --git a/setup/wizardsteps.class.inc.php b/setup/wizardsteps.class.inc.php index 510f84777..9d3a8010c 100644 --- a/setup/wizardsteps.class.inc.php +++ b/setup/wizardsteps.class.inc.php @@ -1605,7 +1605,7 @@ EOF if ($this->bUpgrade) { // In upgrade mode, the defaults are the installed modules foreach ($aChoice['modules'] as $sModuleId) { - if ($aModules[$sModuleId]['version_db'] != '') { + if ($aModules[$sModuleId]['installed_version'] != '') { // A module corresponding to this choice is installed $aScores[$sChoiceId][$sModuleId] = true; } @@ -1663,7 +1663,7 @@ EOF } if (array_key_exists('modules', $aChoice)) { foreach ($aChoice['modules'] as $sModuleId) { - if ($aModules[$sModuleId]['version_db'] != '') { + if ($aModules[$sModuleId]['installed_version'] != '') { // A module corresponding to this choice is installed, increase the score of this choice if (!isset($aScores[$sChoiceId])) { $aScores[$sChoiceId] = []; diff --git a/sources/Controller/AjaxRenderController.php b/sources/Controller/AjaxRenderController.php index 86f34d37b..adb2bcbbc 100644 --- a/sources/Controller/AjaxRenderController.php +++ b/sources/Controller/AjaxRenderController.php @@ -1019,10 +1019,10 @@ EOF if ($sModuleId == '_Root_') { continue; } - if ($aModuleData['version_db'] == '') { + if ($aModuleData['installed_version'] == '') { continue; } - $oPage->add('InstalledModule/'.$sModuleId.': '.$aModuleData['version_db']."\n"); + $oPage->add('InstalledModule/'.$sModuleId.': '.$aModuleData['installed_version']."\n"); } $oPage->add('===== end ====='); diff --git a/tests/php-unit-tests/unitary-tests/setup/AnalyzeInstallationTest.php b/tests/php-unit-tests/unitary-tests/setup/AnalyzeInstallationTest.php new file mode 100644 index 000000000..e8235bbee --- /dev/null +++ b/tests/php-unit-tests/unitary-tests/setup/AnalyzeInstallationTest.php @@ -0,0 +1,161 @@ +RequireOnceItopFile('setup/AnalyzeInstallation.php'); + $this->RequireOnceItopFile('setup/ModuleInstallationService.php'); + $this->RequireOnceItopFile('setup/modulediscovery.class.inc.php'); + $this->RequireOnceItopFile('setup/runtimeenv.class.inc.php'); + } + + public static function AnalyzeInstallationProvider() + { + //$aModules = json_decode(file_get_contents(__DIR__.'/ressources/priv_modules.json'), true); + $aAnalyzeInstallationOutput = json_decode(file_get_contents(__DIR__.'/ressources/analyze_installation_output.json'), true); + $aAvailableModules = json_decode(file_get_contents(__DIR__.'/ressources/available_modules.json'), true); + return [ + 'new modules not in DB setup history' => [ + 'aAvailableModules' => [ + 'mandatory_module/1.0.0' => [ + "mandatory" => true, + "ga" => "bu", + ], + 'optional_module/6.6.6' => [ + "mandatory" => false, + "zo" => "meu", + ], + ], + 'aInstalledModules' => [], + 'expected' => [ + '_Root_' => [ + 'installed_version' => '', + 'available_version' => '3.3.0-dev-svn', + 'name_code' => 'iTop', + ], + 'mandatory_module' => [ + "mandatory" => true, + 'installed_version' => '', + 'available_version' => '1.0.0', + 'install' => [ + 'flag' => 2, + 'message' => 'the module is part of the application', + ], + "ga" => "bu", + ], + 'optional_module' => [ + "mandatory" => false, + 'installed_version' => '', + 'available_version' => '6.6.6', + "zo" => "meu", + 'install' => [ + 'flag' => 1, + 'message' => '', + ], + ], + ], + ], + 'new modules ALREADY in DB setup history' => [ + 'aAvailableModules' => [ + 'mandatory_module/1.0.0' => [ + "mandatory" => true, + "ga" => "bu", + ], + 'optional_module/6.6.6' => [ + "mandatory" => false, + "zo" => "meu", + ], + ], + 'aInstalledModules' => json_decode(file_get_contents(__DIR__.'/ressources/priv_modules_simpleusecase.json'), true), + 'expected' => [ + '_Root_' => [ + 'installed_version' => '3.3.0-dev-svn', + 'available_version' => '3.3.0-dev-svn', + 'name_code' => 'iTop', + ], + 'mandatory_module' => [ + "mandatory" => true, + 'installed_version' => '3.3.0', + 'available_version' => '1.0.0', + "ga" => "bu", + 'install' => [ + 'flag' => 2, + 'message' => 'the module is part of the application', + ], + 'uninstall' => [ + 'flag' => 3, + 'message' => 'the module is part of the application', + ], + ], + 'optional_module' => [ + "mandatory" => false, + 'installed_version' => '3.3.0', + 'available_version' => '6.6.6', + "zo" => "meu", + 'install' => [ + 'flag' => 1, + 'message' => '', + ], + 'uninstall' => [ + 'flag' => 1, + 'message' => '', + ], + ], + ], + ], + 'dummyfirst installation' => [ + 'aAvailableModules' => [], + 'aInstalledModules' => [], + 'expected' => [ + '_Root_' => [ + 'installed_version' => '', + 'available_version' => '3.3.0-dev-svn', + 'name_code' => 'iTop', + ], + ], + ], + 'dummy 2nd installation' => [ + 'aAvailableModules' => [], + 'aInstalledModules' => json_decode(file_get_contents(__DIR__.'/ressources/priv_modules2.json'), true), + 'expected' => [ + '_Root_' => [ + 'installed_version' => '3.3.0-dev-svn', + 'available_version' => '3.3.0-dev-svn', + 'name_code' => 'iTop', + ], + ], + ], + 'real_case' => [ + 'aAvailableModules' => $aAvailableModules, + 'aInstalledModules' => json_decode(file_get_contents(__DIR__.'/ressources/priv_modules2.json'), true), + 'expected' => $aAnalyzeInstallationOutput, + ], + ]; + } + + /** + * @dataProvider AnalyzeInstallationProvider + */ + public function testAnalyzeInstallation($aAvailableModules, $aInstalledModules, $expected) + { + $this->SetNonPublicProperty(AnalyzeInstallation::GetInstance(), "aAvailableModules", $aAvailableModules); + //$aModules = json_decode(file_get_contents(__DIR__.'/ressources/priv_modules2.json'), true); + $this->SetNonPublicProperty(ModuleInstallationService::GetInstance(), "aSelectInstall", $aInstalledModules); + + $oConfig = $this->createMock(\Config::class); + + $modulesPath = [ + APPROOT.'extensions', + ]; + $aModules = AnalyzeInstallation::GetInstance()->AnalyzeInstallation($oConfig, $modulesPath, false, null); + $this->assertEquals($expected, $aModules); + } +} diff --git a/tests/php-unit-tests/unitary-tests/setup/ressources/analyze_installation_output.json b/tests/php-unit-tests/unitary-tests/setup/ressources/analyze_installation_output.json new file mode 100644 index 000000000..f520d5430 --- /dev/null +++ b/tests/php-unit-tests/unitary-tests/setup/ressources/analyze_installation_output.json @@ -0,0 +1,2265 @@ +{ + "_Root_": { + "installed_version": "3.3.0-dev-svn", + "available_version": "3.3.0-dev-svn", + "name_code": "iTop" + }, + "authent-cas": { + "label": "CAS SSO", + "category": "authentication", + "dependencies": [], + "mandatory": true, + "visible": true, + "datamodel": [ + "vendor\/autoload.php", + "src\/CASLoginExtension.php" + ], + "webservice": [], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": { + "cas_debug": false, + "cas_host": "", + "cas_port": "", + "cas_context": "", + "cas_version": "", + "service_base_url": "" + }, + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/authent-cas\/module.authent-cas.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/authent-cas", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/authent-cas\/module.authent-cas.php", + "dictionary": [ + "2.x\/authent-cas\/dictionaries\/de.dict.authent-cas.php", + "2.x\/authent-cas\/dictionaries\/en_gb.dict.authent-cas.php", + "2.x\/authent-cas\/dictionaries\/cs.dict.authent-cas.php", + "2.x\/authent-cas\/dictionaries\/pl.dict.authent-cas.php", + "2.x\/authent-cas\/dictionaries\/nl.dict.authent-cas.php", + "2.x\/authent-cas\/dictionaries\/da.dict.authent-cas.php", + "2.x\/authent-cas\/dictionaries\/tr.dict.authent-cas.php", + "2.x\/authent-cas\/dictionaries\/ru.dict.authent-cas.php", + "2.x\/authent-cas\/dictionaries\/ja.dict.authent-cas.php", + "2.x\/authent-cas\/dictionaries\/es_cr.dict.authent-cas.php", + "2.x\/authent-cas\/dictionaries\/it.dict.authent-cas.php", + "2.x\/authent-cas\/dictionaries\/pt_br.dict.authent-cas.php", + "2.x\/authent-cas\/dictionaries\/sk.dict.authent-cas.php", + "2.x\/authent-cas\/dictionaries\/hu.dict.authent-cas.php", + "2.x\/authent-cas\/dictionaries\/zh_cn.dict.authent-cas.php", + "2.x\/authent-cas\/dictionaries\/en.dict.authent-cas.php", + "2.x\/authent-cas\/dictionaries\/fr.dict.authent-cas.php" + ], + "installed_version": "3.3.0", + "available_version": "3.3.0", + "install": { + "flag": 2, + "message": "the module is part of the application" + }, + "uninstall": { + "flag": 3, + "message": "the module is part of the application" + } + }, + "authent-external": { + "label": "External user authentication", + "category": "authentication", + "dependencies": [], + "mandatory": false, + "visible": true, + "datamodel": [ + "model.authent-external.php" + ], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/authent-external\/module.authent-external.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/authent-external", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/authent-external\/module.authent-external.php", + "dictionary": [ + "2.x\/authent-external\/dictionaries\/fr.dict.authent-external.php", + "2.x\/authent-external\/dictionaries\/de.dict.authent-external.php", + "2.x\/authent-external\/dictionaries\/zh_cn.dict.authent-external.php", + "2.x\/authent-external\/dictionaries\/pl.dict.authent-external.php", + "2.x\/authent-external\/dictionaries\/tr.dict.authent-external.php", + "2.x\/authent-external\/dictionaries\/en_gb.dict.authent-external.php", + "2.x\/authent-external\/dictionaries\/pt_br.dict.authent-external.php", + "2.x\/authent-external\/dictionaries\/da.dict.authent-external.php", + "2.x\/authent-external\/dictionaries\/ru.dict.authent-external.php", + "2.x\/authent-external\/dictionaries\/cs.dict.authent-external.php", + "2.x\/authent-external\/dictionaries\/it.dict.authent-external.php", + "2.x\/authent-external\/dictionaries\/en.dict.authent-external.php", + "2.x\/authent-external\/dictionaries\/hu.dict.authent-external.php", + "2.x\/authent-external\/dictionaries\/sk.dict.authent-external.php", + "2.x\/authent-external\/dictionaries\/ja.dict.authent-external.php", + "2.x\/authent-external\/dictionaries\/nl.dict.authent-external.php", + "2.x\/authent-external\/dictionaries\/es_cr.dict.authent-external.php" + ], + "installed_version": "3.3.0", + "available_version": "3.3.0", + "install": { + "flag": 1, + "message": "" + }, + "uninstall": { + "flag": 1, + "message": "" + } + }, + "authent-ldap": { + "label": "User authentication based on LDAP", + "category": "authentication", + "dependencies": [], + "mandatory": false, + "visible": true, + "installer": "AuthentLDAPInstaller", + "datamodel": [], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": { + "uri": "ldap:\/\/localhost", + "default_user": "", + "default_pwd": "", + "base_dn": "dc=yourcompany,dc=com", + "user_query": "(&(uid=%1$s)(inetuserstatus=ACTIVE))", + "options": { + "17": 3, + "8": 0 + }, + "start_tls": false, + "debug": false, + "servers": [] + }, + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/authent-ldap\/module.authent-ldap.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/authent-ldap", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/authent-ldap\/module.authent-ldap.php", + "dictionary": [ + "2.x\/authent-ldap\/dictionaries\/en.dict.authent-ldap.php", + "2.x\/authent-ldap\/dictionaries\/pl.dict.authent-ldap.php", + "2.x\/authent-ldap\/dictionaries\/ru.dict.authent-ldap.php", + "2.x\/authent-ldap\/dictionaries\/cs.dict.authent-ldap.php", + "2.x\/authent-ldap\/dictionaries\/es_cr.dict.authent-ldap.php", + "2.x\/authent-ldap\/dictionaries\/zh_cn.dict.authent-ldap.php", + "2.x\/authent-ldap\/dictionaries\/pt_br.dict.authent-ldap.php", + "2.x\/authent-ldap\/dictionaries\/it.dict.authent-ldap.php", + "2.x\/authent-ldap\/dictionaries\/tr.dict.authent-ldap.php", + "2.x\/authent-ldap\/dictionaries\/fr.dict.authent-ldap.php", + "2.x\/authent-ldap\/dictionaries\/en_gb.dict.authent-ldap.php", + "2.x\/authent-ldap\/dictionaries\/de.dict.authent-ldap.php", + "2.x\/authent-ldap\/dictionaries\/da.dict.authent-ldap.php", + "2.x\/authent-ldap\/dictionaries\/nl.dict.authent-ldap.php", + "2.x\/authent-ldap\/dictionaries\/hu.dict.authent-ldap.php", + "2.x\/authent-ldap\/dictionaries\/sk.dict.authent-ldap.php", + "2.x\/authent-ldap\/dictionaries\/ja.dict.authent-ldap.php" + ], + "installed_version": "3.3.0", + "available_version": "3.3.0", + "install": { + "flag": 1, + "message": "" + }, + "uninstall": { + "flag": 1, + "message": "" + } + }, + "authent-local": { + "label": "User authentication based on the local DB", + "category": "authentication", + "dependencies": [], + "mandatory": true, + "visible": true, + "datamodel": [ + "model.authent-local.php" + ], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/authent-local\/module.authent-local.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/authent-local", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/authent-local\/module.authent-local.php", + "dictionary": [ + "2.x\/authent-local\/dictionaries\/en_gb.dict.authent-local.php", + "2.x\/authent-local\/dictionaries\/hu.dict.authent-local.php", + "2.x\/authent-local\/dictionaries\/de.dict.authent-local.php", + "2.x\/authent-local\/dictionaries\/ja.dict.authent-local.php", + "2.x\/authent-local\/dictionaries\/fr.dict.authent-local.php", + "2.x\/authent-local\/dictionaries\/es_cr.dict.authent-local.php", + "2.x\/authent-local\/dictionaries\/it.dict.authent-local.php", + "2.x\/authent-local\/dictionaries\/tr.dict.authent-local.php", + "2.x\/authent-local\/dictionaries\/da.dict.authent-local.php", + "2.x\/authent-local\/dictionaries\/sk.dict.authent-local.php", + "2.x\/authent-local\/dictionaries\/pl.dict.authent-local.php", + "2.x\/authent-local\/dictionaries\/ru.dict.authent-local.php", + "2.x\/authent-local\/dictionaries\/nl.dict.authent-local.php", + "2.x\/authent-local\/dictionaries\/zh_cn.dict.authent-local.php", + "2.x\/authent-local\/dictionaries\/cs.dict.authent-local.php", + "2.x\/authent-local\/dictionaries\/en.dict.authent-local.php", + "2.x\/authent-local\/dictionaries\/pt_br.dict.authent-local.php" + ], + "installed_version": "3.3.0", + "available_version": "3.3.0", + "install": { + "flag": 2, + "message": "the module is part of the application" + }, + "uninstall": { + "flag": 3, + "message": "the module is part of the application" + } + }, + "combodo-backoffice-darkmoon-theme": { + "label": "Backoffice: Darkmoon theme", + "category": "business", + "dependencies": [], + "mandatory": true, + "visible": false, + "datamodel": [], + "webservice": [], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/combodo-backoffice-darkmoon-theme\/module.combodo-backoffice-darkmoon-theme.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/combodo-backoffice-darkmoon-theme", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/combodo-backoffice-darkmoon-theme\/module.combodo-backoffice-darkmoon-theme.php", + "dictionary": [ + "2.x\/combodo-backoffice-darkmoon-theme\/dictionaries\/es_cr.dict.combodo-backoffice-darkmoon-theme.php", + "2.x\/combodo-backoffice-darkmoon-theme\/dictionaries\/tr.dict.combodo-backoffice-darkmoon-theme.php", + "2.x\/combodo-backoffice-darkmoon-theme\/dictionaries\/sk.dict.combodo-backoffice-darkmoon-theme.php", + "2.x\/combodo-backoffice-darkmoon-theme\/dictionaries\/pt_br.dict.combodo-backoffice-darkmoon-theme.php", + "2.x\/combodo-backoffice-darkmoon-theme\/dictionaries\/it.dict.combodo-backoffice-darkmoon-theme.php", + "2.x\/combodo-backoffice-darkmoon-theme\/dictionaries\/en_gb.dict.combodo-backoffice-darkmoon-theme.php", + "2.x\/combodo-backoffice-darkmoon-theme\/dictionaries\/da.dict.combodo-backoffice-darkmoon-theme.php", + "2.x\/combodo-backoffice-darkmoon-theme\/dictionaries\/nl.dict.combodo-backoffice-darkmoon-theme.php", + "2.x\/combodo-backoffice-darkmoon-theme\/dictionaries\/ja.dict.combodo-backoffice-darkmoon-theme.php", + "2.x\/combodo-backoffice-darkmoon-theme\/dictionaries\/hu.dict.combodo-backoffice-darkmoon-theme.php", + "2.x\/combodo-backoffice-darkmoon-theme\/dictionaries\/pl.dict.combodo-backoffice-darkmoon-theme.php", + "2.x\/combodo-backoffice-darkmoon-theme\/dictionaries\/de.dict.combodo-backoffice-darkmoon-theme.php", + "2.x\/combodo-backoffice-darkmoon-theme\/dictionaries\/zh_cn.dict.combodo-backoffice-darkmoon-theme.php", + "2.x\/combodo-backoffice-darkmoon-theme\/dictionaries\/ru.dict.combodo-backoffice-darkmoon-theme.php", + "2.x\/combodo-backoffice-darkmoon-theme\/dictionaries\/fr.dict.combodo-backoffice-darkmoon-theme.php", + "2.x\/combodo-backoffice-darkmoon-theme\/dictionaries\/en.dict.combodo-backoffice-darkmoon-theme.php", + "2.x\/combodo-backoffice-darkmoon-theme\/dictionaries\/cs.dict.combodo-backoffice-darkmoon-theme.php" + ], + "installed_version": "3.3.0", + "available_version": "3.3.0", + "install": { + "flag": 2, + "message": "the module is part of the application" + }, + "uninstall": { + "flag": 3, + "message": "the module is part of the application" + } + }, + "combodo-backoffice-fullmoon-high-contrast-theme": { + "label": "Backoffice: Fullmoon with high contrast accessibility theme", + "category": "business", + "dependencies": [], + "mandatory": true, + "visible": false, + "datamodel": [], + "webservice": [], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/combodo-backoffice-fullmoon-high-contrast-theme\/module.combodo-backoffice-fullmoon-high-contrast-theme.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/combodo-backoffice-fullmoon-high-contrast-theme", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/combodo-backoffice-fullmoon-high-contrast-theme\/module.combodo-backoffice-fullmoon-high-contrast-theme.php", + "dictionary": [ + "2.x\/combodo-backoffice-fullmoon-high-contrast-theme\/dictionaries\/es_cr.dict.combodo-backoffice-fullmoon-high-contrast-theme.php", + "2.x\/combodo-backoffice-fullmoon-high-contrast-theme\/dictionaries\/en_gb.dict.combodo-backoffice-fullmoon-high-contrast-theme.php", + "2.x\/combodo-backoffice-fullmoon-high-contrast-theme\/dictionaries\/sk.dict.combodo-backoffice-fullmoon-high-contrast-theme.php", + "2.x\/combodo-backoffice-fullmoon-high-contrast-theme\/dictionaries\/tr.dict.combodo-backoffice-fullmoon-high-contrast-theme.php", + "2.x\/combodo-backoffice-fullmoon-high-contrast-theme\/dictionaries\/en.dict.combodo-backoffice-fullmoon-high-contrast-theme.php", + "2.x\/combodo-backoffice-fullmoon-high-contrast-theme\/dictionaries\/pt_br.dict.combodo-backoffice-fullmoon-high-contrast-theme.php", + "2.x\/combodo-backoffice-fullmoon-high-contrast-theme\/dictionaries\/cs.dict.combodo-backoffice-fullmoon-high-contrast-theme.php", + "2.x\/combodo-backoffice-fullmoon-high-contrast-theme\/dictionaries\/fr.dict.combodo-backoffice-fullmoon-high-contrast-theme.php", + "2.x\/combodo-backoffice-fullmoon-high-contrast-theme\/dictionaries\/hu.dict.combodo-backoffice-fullmoon-high-contrast-theme.php", + "2.x\/combodo-backoffice-fullmoon-high-contrast-theme\/dictionaries\/it.dict.combodo-backoffice-fullmoon-high-contrast-theme.php", + "2.x\/combodo-backoffice-fullmoon-high-contrast-theme\/dictionaries\/ru.dict.combodo-backoffice-fullmoon-high-contrast-theme.php", + "2.x\/combodo-backoffice-fullmoon-high-contrast-theme\/dictionaries\/pl.dict.combodo-backoffice-fullmoon-high-contrast-theme.php", + "2.x\/combodo-backoffice-fullmoon-high-contrast-theme\/dictionaries\/da.dict.combodo-backoffice-fullmoon-high-contrast-theme.php", + "2.x\/combodo-backoffice-fullmoon-high-contrast-theme\/dictionaries\/ja.dict.combodo-backoffice-fullmoon-high-contrast-theme.php", + "2.x\/combodo-backoffice-fullmoon-high-contrast-theme\/dictionaries\/zh_cn.dict.combodo-backoffice-fullmoon-high-contrast-theme.php", + "2.x\/combodo-backoffice-fullmoon-high-contrast-theme\/dictionaries\/nl.dict.combodo-backoffice-fullmoon-high-contrast-theme.php", + "2.x\/combodo-backoffice-fullmoon-high-contrast-theme\/dictionaries\/de.dict.combodo-backoffice-fullmoon-high-contrast-theme.php" + ], + "installed_version": "3.3.0", + "available_version": "3.3.0", + "install": { + "flag": 2, + "message": "the module is part of the application" + }, + "uninstall": { + "flag": 3, + "message": "the module is part of the application" + } + }, + "combodo-backoffice-fullmoon-protanopia-deuteranopia-theme": { + "label": "Backoffice: Fullmoon with protonopia & deuteranopia accessibility theme", + "category": "business", + "dependencies": [], + "mandatory": true, + "visible": false, + "datamodel": [], + "webservice": [], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/combodo-backoffice-fullmoon-protanopia-deuteranopia-theme\/module.combodo-backoffice-fullmoon-protanopia-deuteranopia-theme.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/combodo-backoffice-fullmoon-protanopia-deuteranopia-theme", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/combodo-backoffice-fullmoon-protanopia-deuteranopia-theme\/module.combodo-backoffice-fullmoon-protanopia-deuteranopia-theme.php", + "dictionary": [ + "2.x\/combodo-backoffice-fullmoon-protanopia-deuteranopia-theme\/dictionaries\/pl.dict.combodo-backoffice-fullmoon-protanopia-deuteranopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-protanopia-deuteranopia-theme\/dictionaries\/ja.dict.combodo-backoffice-fullmoon-protanopia-deuteranopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-protanopia-deuteranopia-theme\/dictionaries\/da.dict.combodo-backoffice-fullmoon-protanopia-deuteranopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-protanopia-deuteranopia-theme\/dictionaries\/de.dict.combodo-backoffice-fullmoon-protanopia-deuteranopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-protanopia-deuteranopia-theme\/dictionaries\/cs.dict.combodo-backoffice-fullmoon-protanopia-deuteranopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-protanopia-deuteranopia-theme\/dictionaries\/es_cr.dict.combodo-backoffice-fullmoon-protanopia-deuteranopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-protanopia-deuteranopia-theme\/dictionaries\/zh_cn.dict.combodo-backoffice-fullmoon-protanopia-deuteranopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-protanopia-deuteranopia-theme\/dictionaries\/sk.dict.combodo-backoffice-fullmoon-protanopia-deuteranopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-protanopia-deuteranopia-theme\/dictionaries\/nl.dict.combodo-backoffice-fullmoon-protanopia-deuteranopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-protanopia-deuteranopia-theme\/dictionaries\/tr.dict.combodo-backoffice-fullmoon-protanopia-deuteranopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-protanopia-deuteranopia-theme\/dictionaries\/pt_br.dict.combodo-backoffice-fullmoon-protanopia-deuteranopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-protanopia-deuteranopia-theme\/dictionaries\/it.dict.combodo-backoffice-fullmoon-protanopia-deuteranopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-protanopia-deuteranopia-theme\/dictionaries\/fr.dict.combodo-backoffice-fullmoon-protanopia-deuteranopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-protanopia-deuteranopia-theme\/dictionaries\/ru.dict.combodo-backoffice-fullmoon-protanopia-deuteranopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-protanopia-deuteranopia-theme\/dictionaries\/en_gb.dict.combodo-backoffice-fullmoon-protanopia-deuteranopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-protanopia-deuteranopia-theme\/dictionaries\/hu.dict.combodo-backoffice-fullmoon-protanopia-deuteranopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-protanopia-deuteranopia-theme\/dictionaries\/en.dict.combodo-backoffice-fullmoon-protanopia-deuteranopia-theme.php" + ], + "installed_version": "3.3.0", + "available_version": "3.3.0", + "install": { + "flag": 2, + "message": "the module is part of the application" + }, + "uninstall": { + "flag": 3, + "message": "the module is part of the application" + } + }, + "combodo-backoffice-fullmoon-tritanopia-theme": { + "label": "Backoffice: Fullmoon with tritanopia accessibility theme", + "category": "business", + "dependencies": [], + "mandatory": true, + "visible": false, + "datamodel": [], + "webservice": [], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/combodo-backoffice-fullmoon-tritanopia-theme\/module.combodo-backoffice-fullmoon-tritanopia-theme.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/combodo-backoffice-fullmoon-tritanopia-theme", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/combodo-backoffice-fullmoon-tritanopia-theme\/module.combodo-backoffice-fullmoon-tritanopia-theme.php", + "dictionary": [ + "2.x\/combodo-backoffice-fullmoon-tritanopia-theme\/dictionaries\/en.dict.combodo-backoffice-fullmoon-tritanopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-tritanopia-theme\/dictionaries\/ru.dict.combodo-backoffice-fullmoon-tritanopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-tritanopia-theme\/dictionaries\/da.dict.combodo-backoffice-fullmoon-tritanopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-tritanopia-theme\/dictionaries\/fr.dict.combodo-backoffice-fullmoon-tritanopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-tritanopia-theme\/dictionaries\/pl.dict.combodo-backoffice-fullmoon-tritanopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-tritanopia-theme\/dictionaries\/it.dict.combodo-backoffice-fullmoon-tritanopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-tritanopia-theme\/dictionaries\/ja.dict.combodo-backoffice-fullmoon-tritanopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-tritanopia-theme\/dictionaries\/hu.dict.combodo-backoffice-fullmoon-tritanopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-tritanopia-theme\/dictionaries\/tr.dict.combodo-backoffice-fullmoon-tritanopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-tritanopia-theme\/dictionaries\/en_gb.dict.combodo-backoffice-fullmoon-tritanopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-tritanopia-theme\/dictionaries\/de.dict.combodo-backoffice-fullmoon-tritanopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-tritanopia-theme\/dictionaries\/nl.dict.combodo-backoffice-fullmoon-tritanopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-tritanopia-theme\/dictionaries\/zh_cn.dict.combodo-backoffice-fullmoon-tritanopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-tritanopia-theme\/dictionaries\/sk.dict.combodo-backoffice-fullmoon-tritanopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-tritanopia-theme\/dictionaries\/pt_br.dict.combodo-backoffice-fullmoon-tritanopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-tritanopia-theme\/dictionaries\/cs.dict.combodo-backoffice-fullmoon-tritanopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-tritanopia-theme\/dictionaries\/es_cr.dict.combodo-backoffice-fullmoon-tritanopia-theme.php" + ], + "installed_version": "3.3.0", + "available_version": "3.3.0", + "install": { + "flag": 2, + "message": "the module is part of the application" + }, + "uninstall": { + "flag": 3, + "message": "the module is part of the application" + } + }, + "itop-attachments": { + "label": "Tickets Attachments", + "category": "business", + "dependencies": [], + "mandatory": false, + "visible": true, + "installer": "AttachmentInstaller", + "datamodel": [ + "vendor\/autoload.php", + "main.itop-attachments.php", + "src\/Trigger\/TriggerOnAttachmentCreate.php", + "src\/Trigger\/TriggerOnAttachmentDelete.php", + "src\/Trigger\/TriggerOnAttachmentDownload.php", + "renderers.itop-attachments.php" + ], + "webservice": [], + "dictionary": [ + "2.x\/itop-attachments\/dictionaries\/cs.dict.itop-attachments.php", + "2.x\/itop-attachments\/dictionaries\/ja.dict.itop-attachments.php", + "2.x\/itop-attachments\/dictionaries\/es_cr.dict.itop-attachments.php", + "2.x\/itop-attachments\/dictionaries\/ru.dict.itop-attachments.php", + "2.x\/itop-attachments\/dictionaries\/it.dict.itop-attachments.php", + "2.x\/itop-attachments\/dictionaries\/zh_cn.dict.itop-attachments.php", + "2.x\/itop-attachments\/dictionaries\/hu.dict.itop-attachments.php", + "2.x\/itop-attachments\/dictionaries\/da.dict.itop-attachments.php", + "2.x\/itop-attachments\/dictionaries\/en.dict.itop-attachments.php", + "2.x\/itop-attachments\/dictionaries\/sk.dict.itop-attachments.php", + "2.x\/itop-attachments\/dictionaries\/pt_br.dict.itop-attachments.php", + "2.x\/itop-attachments\/dictionaries\/fr.dict.itop-attachments.php", + "2.x\/itop-attachments\/dictionaries\/de.dict.itop-attachments.php", + "2.x\/itop-attachments\/dictionaries\/en_gb.dict.itop-attachments.php", + "2.x\/itop-attachments\/dictionaries\/pl.dict.itop-attachments.php", + "2.x\/itop-attachments\/dictionaries\/tr.dict.itop-attachments.php", + "2.x\/itop-attachments\/dictionaries\/nl.dict.itop-attachments.php" + ], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": { + "allowed_classes": [ + "Ticket" + ], + "position": "relations", + "preview_max_width": 290, + "icon_preview_max_size": 500000 + }, + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-attachments\/module.itop-attachments.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-attachments", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-attachments\/module.itop-attachments.php", + "installed_version": "3.3.0", + "available_version": "3.3.0", + "install": { + "flag": 1, + "message": "" + }, + "uninstall": { + "flag": 1, + "message": "" + } + }, + "itop-backup": { + "label": "Backup utilities", + "category": "Application management", + "dependencies": [], + "mandatory": true, + "visible": false, + "datamodel": [ + "main.itop-backup.php" + ], + "webservice": [], + "dictionary": [ + "en.dict.itop-backup.php", + "fr.dict.itop-backup.php", + "2.x\/itop-backup\/dictionaries\/cs.dict.itop-backup.php", + "2.x\/itop-backup\/dictionaries\/es_cr.dict.itop-backup.php", + "2.x\/itop-backup\/dictionaries\/pl.dict.itop-backup.php", + "2.x\/itop-backup\/dictionaries\/fr.dict.itop-backup.php", + "2.x\/itop-backup\/dictionaries\/de.dict.itop-backup.php", + "2.x\/itop-backup\/dictionaries\/ja.dict.itop-backup.php", + "2.x\/itop-backup\/dictionaries\/en.dict.itop-backup.php", + "2.x\/itop-backup\/dictionaries\/hu.dict.itop-backup.php", + "2.x\/itop-backup\/dictionaries\/nl.dict.itop-backup.php", + "2.x\/itop-backup\/dictionaries\/it.dict.itop-backup.php", + "2.x\/itop-backup\/dictionaries\/sk.dict.itop-backup.php", + "2.x\/itop-backup\/dictionaries\/ru.dict.itop-backup.php", + "2.x\/itop-backup\/dictionaries\/tr.dict.itop-backup.php", + "2.x\/itop-backup\/dictionaries\/pt_br.dict.itop-backup.php", + "2.x\/itop-backup\/dictionaries\/en_gb.dict.itop-backup.php", + "2.x\/itop-backup\/dictionaries\/da.dict.itop-backup.php", + "2.x\/itop-backup\/dictionaries\/zh_cn.dict.itop-backup.php" + ], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": { + "mysql_bindir": "", + "week_days": "monday, tuesday, wednesday, thursday, friday", + "time": "23:30", + "retention_count": 5, + "enabled": true, + "itop_backup_incident": "" + }, + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-backup\/module.itop-backup.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-backup", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-backup\/module.itop-backup.php", + "installed_version": "3.3.0", + "available_version": "3.3.0", + "install": { + "flag": 2, + "message": "the module is part of the application" + }, + "uninstall": { + "flag": 3, + "message": "the module is part of the application" + } + }, + "itop-config": { + "label": "Configuration editor", + "category": "Application management", + "dependencies": [], + "mandatory": true, + "visible": false, + "datamodel": [ + "src\/Validator\/ConfigNodesVisitor.php", + "src\/Validator\/iTopConfigAstValidator.php", + "src\/Validator\/iTopConfigSyntaxValidator.php", + "src\/Validator\/iTopConfigValidator.php", + "src\/Controller\/ConfigEditorController.php" + ], + "webservice": [], + "dictionary": [ + "en.dict.itop-config.php", + "fr.dict.itop-config.php", + "2.x\/itop-config\/dictionaries\/pl.dict.itop-config.php", + "2.x\/itop-config\/dictionaries\/ru.dict.itop-config.php", + "2.x\/itop-config\/dictionaries\/en.dict.itop-config.php", + "2.x\/itop-config\/dictionaries\/sk.dict.itop-config.php", + "2.x\/itop-config\/dictionaries\/en_gb.dict.itop-config.php", + "2.x\/itop-config\/dictionaries\/cs.dict.itop-config.php", + "2.x\/itop-config\/dictionaries\/de.dict.itop-config.php", + "2.x\/itop-config\/dictionaries\/zh_cn.dict.itop-config.php", + "2.x\/itop-config\/dictionaries\/nl.dict.itop-config.php", + "2.x\/itop-config\/dictionaries\/es_cr.dict.itop-config.php", + "2.x\/itop-config\/dictionaries\/da.dict.itop-config.php", + "2.x\/itop-config\/dictionaries\/ja.dict.itop-config.php", + "2.x\/itop-config\/dictionaries\/pt_br.dict.itop-config.php", + "2.x\/itop-config\/dictionaries\/tr.dict.itop-config.php", + "2.x\/itop-config\/dictionaries\/hu.dict.itop-config.php", + "2.x\/itop-config\/dictionaries\/it.dict.itop-config.php", + "2.x\/itop-config\/dictionaries\/fr.dict.itop-config.php" + ], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-config\/module.itop-config.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-config", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-config\/module.itop-config.php", + "installed_version": "3.3.0", + "available_version": "3.3.0", + "install": { + "flag": 2, + "message": "the module is part of the application" + }, + "uninstall": { + "flag": 3, + "message": "the module is part of the application" + } + }, + "itop-files-information": { + "label": "iTop files information", + "category": "business", + "dependencies": [], + "mandatory": false, + "visible": false, + "datamodel": [ + "src\/Service\/FilesInformation.php", + "src\/Service\/FilesInformationException.php", + "src\/Service\/FilesInformationUtils.php", + "src\/Service\/FilesIntegrity.php" + ], + "webservice": [], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-files-information\/module.itop-files-information.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-files-information", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-files-information\/module.itop-files-information.php", + "dictionary": [ + "2.x\/itop-files-information\/dictionaries\/sk.dict.itop-files-information.php", + "2.x\/itop-files-information\/dictionaries\/cs.dict.itop-files-information.php", + "2.x\/itop-files-information\/dictionaries\/ja.dict.itop-files-information.php", + "2.x\/itop-files-information\/dictionaries\/hu.dict.itop-files-information.php", + "2.x\/itop-files-information\/dictionaries\/en_gb.dict.itop-files-information.php", + "2.x\/itop-files-information\/dictionaries\/fr.dict.itop-files-information.php", + "2.x\/itop-files-information\/dictionaries\/pt_br.dict.itop-files-information.php", + "2.x\/itop-files-information\/dictionaries\/es_cr.dict.itop-files-information.php", + "2.x\/itop-files-information\/dictionaries\/tr.dict.itop-files-information.php", + "2.x\/itop-files-information\/dictionaries\/pl.dict.itop-files-information.php", + "2.x\/itop-files-information\/dictionaries\/zh_cn.dict.itop-files-information.php", + "2.x\/itop-files-information\/dictionaries\/en.dict.itop-files-information.php", + "2.x\/itop-files-information\/dictionaries\/da.dict.itop-files-information.php", + "2.x\/itop-files-information\/dictionaries\/de.dict.itop-files-information.php", + "2.x\/itop-files-information\/dictionaries\/nl.dict.itop-files-information.php", + "2.x\/itop-files-information\/dictionaries\/it.dict.itop-files-information.php", + "2.x\/itop-files-information\/dictionaries\/ru.dict.itop-files-information.php" + ], + "installed_version": "3.3.0", + "available_version": "3.3.0", + "install": { + "flag": 1, + "message": "" + }, + "uninstall": { + "flag": 1, + "message": "" + } + }, + "itop-portal-base": { + "label": "Portal Development Library", + "category": "Portal", + "dependencies": [], + "mandatory": true, + "visible": false, + "datamodel": [ + "portal\/vendor\/autoload.php" + ], + "webservice": [], + "dictionary": [ + "2.x\/itop-portal-base\/dictionaries\/en_gb.dict.itop-portal-base.php", + "2.x\/itop-portal-base\/dictionaries\/hu.dict.itop-portal-base.php", + "2.x\/itop-portal-base\/dictionaries\/ja.dict.itop-portal-base.php", + "2.x\/itop-portal-base\/dictionaries\/cs.dict.itop-portal-base.php", + "2.x\/itop-portal-base\/dictionaries\/zh_cn.dict.itop-portal-base.php", + "2.x\/itop-portal-base\/dictionaries\/tr.dict.itop-portal-base.php", + "2.x\/itop-portal-base\/dictionaries\/pt_br.dict.itop-portal-base.php", + "2.x\/itop-portal-base\/dictionaries\/nl.dict.itop-portal-base.php", + "2.x\/itop-portal-base\/dictionaries\/it.dict.itop-portal-base.php", + "2.x\/itop-portal-base\/dictionaries\/es_cr.dict.itop-portal-base.php", + "2.x\/itop-portal-base\/dictionaries\/fr.dict.itop-portal-base.php", + "2.x\/itop-portal-base\/dictionaries\/pl.dict.itop-portal-base.php", + "2.x\/itop-portal-base\/dictionaries\/ru.dict.itop-portal-base.php", + "2.x\/itop-portal-base\/dictionaries\/de.dict.itop-portal-base.php", + "2.x\/itop-portal-base\/dictionaries\/da.dict.itop-portal-base.php", + "2.x\/itop-portal-base\/dictionaries\/en.dict.itop-portal-base.php", + "2.x\/itop-portal-base\/dictionaries\/sk.dict.itop-portal-base.php" + ], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-portal-base\/module.itop-portal-base.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-portal-base", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-portal-base\/module.itop-portal-base.php", + "installed_version": "3.3.0", + "available_version": "3.3.0", + "install": { + "flag": 2, + "message": "the module is part of the application" + }, + "uninstall": { + "flag": 3, + "message": "the module is part of the application" + } + }, + "itop-portal": { + "label": "Enhanced Customer Portal", + "category": "Portal", + "dependencies": [ + "itop-portal-base\/2.7.0" + ], + "mandatory": false, + "visible": true, + "datamodel": [ + "main.itop-portal.php" + ], + "webservice": [], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-portal\/module.itop-portal.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-portal", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-portal\/module.itop-portal.php", + "dictionary": [ + "2.x\/itop-portal\/dictionaries\/de.dict.itop-portal.php", + "2.x\/itop-portal\/dictionaries\/ru.dict.itop-portal.php", + "2.x\/itop-portal\/dictionaries\/pl.dict.itop-portal.php", + "2.x\/itop-portal\/dictionaries\/ja.dict.itop-portal.php", + "2.x\/itop-portal\/dictionaries\/cs.dict.itop-portal.php", + "2.x\/itop-portal\/dictionaries\/zh_cn.dict.itop-portal.php", + "2.x\/itop-portal\/dictionaries\/en_gb.dict.itop-portal.php", + "2.x\/itop-portal\/dictionaries\/da.dict.itop-portal.php", + "2.x\/itop-portal\/dictionaries\/hu.dict.itop-portal.php", + "2.x\/itop-portal\/dictionaries\/it.dict.itop-portal.php", + "2.x\/itop-portal\/dictionaries\/tr.dict.itop-portal.php", + "2.x\/itop-portal\/dictionaries\/es_cr.dict.itop-portal.php", + "2.x\/itop-portal\/dictionaries\/sk.dict.itop-portal.php", + "2.x\/itop-portal\/dictionaries\/fr.dict.itop-portal.php", + "2.x\/itop-portal\/dictionaries\/nl.dict.itop-portal.php", + "2.x\/itop-portal\/dictionaries\/pt_br.dict.itop-portal.php", + "2.x\/itop-portal\/dictionaries\/en.dict.itop-portal.php" + ], + "installed_version": "3.3.0", + "available_version": "3.3.0", + "install": { + "flag": 1, + "message": "" + }, + "uninstall": { + "flag": 1, + "message": "" + } + }, + "itop-profiles-itil": { + "label": "Create standard ITIL profiles", + "category": "create_profiles", + "dependencies": [], + "mandatory": true, + "visible": false, + "datamodel": [], + "webservice": [], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-profiles-itil\/module.itop-profiles-itil.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-profiles-itil", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-profiles-itil\/module.itop-profiles-itil.php", + "installed_version": "3.3.0", + "available_version": "3.3.0", + "install": { + "flag": 2, + "message": "the module is part of the application" + }, + "uninstall": { + "flag": 3, + "message": "the module is part of the application" + } + }, + "itop-sla-computation": { + "label": "SLA Computation", + "category": "sla", + "dependencies": [], + "mandatory": true, + "visible": false, + "datamodel": [ + "main.itop-sla-computation.php" + ], + "webservice": [], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-sla-computation\/module.itop-sla-computation.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-sla-computation", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-sla-computation\/module.itop-sla-computation.php", + "installed_version": "3.3.0", + "available_version": "3.3.0", + "install": { + "flag": 2, + "message": "the module is part of the application" + }, + "uninstall": { + "flag": 3, + "message": "the module is part of the application" + } + }, + "itop-structure": { + "label": "Core iTop Structure", + "category": "business", + "dependencies": [], + "mandatory": true, + "visible": false, + "installer": "StructureInstaller", + "datamodel": [ + "main.itop-structure.php" + ], + "data.struct": [], + "data.sample": [ + "data.sample.organizations.xml", + "data.sample.locations.xml", + "data.sample.persons.xml", + "data.sample.teams.xml", + "data.sample.contactteam.xml", + "data.sample.contacttype.xml" + ], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-structure\/module.itop-structure.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-structure", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-structure\/module.itop-structure.php", + "dictionary": [ + "2.x\/itop-structure\/dictionaries\/sk.dict.itop-structure.php", + "2.x\/itop-structure\/dictionaries\/pl.dict.itop-structure.php", + "2.x\/itop-structure\/dictionaries\/fr.dict.itop-structure.php", + "2.x\/itop-structure\/dictionaries\/pt_br.dict.itop-structure.php", + "2.x\/itop-structure\/dictionaries\/da.dict.itop-structure.php", + "2.x\/itop-structure\/dictionaries\/ja.dict.itop-structure.php", + "2.x\/itop-structure\/dictionaries\/ru.dict.itop-structure.php", + "2.x\/itop-structure\/dictionaries\/tr.dict.itop-structure.php", + "2.x\/itop-structure\/dictionaries\/hu.dict.itop-structure.php", + "2.x\/itop-structure\/dictionaries\/nl.dict.itop-structure.php", + "2.x\/itop-structure\/dictionaries\/en_gb.dict.itop-structure.php", + "2.x\/itop-structure\/dictionaries\/en.dict.itop-structure.php", + "2.x\/itop-structure\/dictionaries\/it.dict.itop-structure.php", + "2.x\/itop-structure\/dictionaries\/de.dict.itop-structure.php", + "2.x\/itop-structure\/dictionaries\/cs.dict.itop-structure.php", + "2.x\/itop-structure\/dictionaries\/es_cr.dict.itop-structure.php", + "2.x\/itop-structure\/dictionaries\/zh_cn.dict.itop-structure.php" + ], + "installed_version": "3.3.0", + "available_version": "3.3.0", + "install": { + "flag": 2, + "message": "the module is part of the application" + }, + "uninstall": { + "flag": 3, + "message": "the module is part of the application" + } + }, + "itop-themes-compat": { + "label": "Light grey and Test red themes compatibility", + "category": "business", + "dependencies": [ + "itop-structure\/3.1.0" + ], + "mandatory": false, + "visible": true, + "datamodel": [], + "webservice": [], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-themes-compat\/module.itop-themes-compat.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-themes-compat", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-themes-compat\/module.itop-themes-compat.php", + "dictionary": [ + "2.x\/itop-themes-compat\/dictionaries\/it.dict.itop-themes-compat.php", + "2.x\/itop-themes-compat\/dictionaries\/tr.dict.itop-themes-compat.php", + "2.x\/itop-themes-compat\/dictionaries\/ru.dict.itop-themes-compat.php", + "2.x\/itop-themes-compat\/dictionaries\/pt_br.dict.itop-themes-compat.php", + "2.x\/itop-themes-compat\/dictionaries\/da.dict.itop-themes-compat.php", + "2.x\/itop-themes-compat\/dictionaries\/fr.dict.itop-themes-compat.php", + "2.x\/itop-themes-compat\/dictionaries\/ja.dict.itop-themes-compat.php", + "2.x\/itop-themes-compat\/dictionaries\/hu.dict.itop-themes-compat.php", + "2.x\/itop-themes-compat\/dictionaries\/en_gb.dict.itop-themes-compat.php", + "2.x\/itop-themes-compat\/dictionaries\/cs.dict.itop-themes-compat.php", + "2.x\/itop-themes-compat\/dictionaries\/nl.dict.itop-themes-compat.php", + "2.x\/itop-themes-compat\/dictionaries\/sk.dict.itop-themes-compat.php", + "2.x\/itop-themes-compat\/dictionaries\/de.dict.itop-themes-compat.php", + "2.x\/itop-themes-compat\/dictionaries\/es_cr.dict.itop-themes-compat.php", + "2.x\/itop-themes-compat\/dictionaries\/zh_cn.dict.itop-themes-compat.php", + "2.x\/itop-themes-compat\/dictionaries\/pl.dict.itop-themes-compat.php", + "2.x\/itop-themes-compat\/dictionaries\/en.dict.itop-themes-compat.php" + ], + "installed_version": "3.3.0", + "available_version": "3.3.0", + "install": { + "flag": 1, + "message": "" + }, + "uninstall": { + "flag": 1, + "message": "" + } + }, + "itop-tickets": { + "label": "Tickets Management", + "category": "business", + "dependencies": [ + "itop-structure\/2.7.1" + ], + "mandatory": false, + "visible": true, + "installer": "TicketsInstaller", + "datamodel": [ + "main.itop-tickets.php" + ], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-tickets\/module.itop-tickets.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-tickets", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-tickets\/module.itop-tickets.php", + "dictionary": [ + "2.x\/itop-tickets\/dictionaries\/cs.dict.itop-tickets.php", + "2.x\/itop-tickets\/dictionaries\/da.dict.itop-tickets.php", + "2.x\/itop-tickets\/dictionaries\/es_cr.dict.itop-tickets.php", + "2.x\/itop-tickets\/dictionaries\/tr.dict.itop-tickets.php", + "2.x\/itop-tickets\/dictionaries\/nl.dict.itop-tickets.php", + "2.x\/itop-tickets\/dictionaries\/pl.dict.itop-tickets.php", + "2.x\/itop-tickets\/dictionaries\/it.dict.itop-tickets.php", + "2.x\/itop-tickets\/dictionaries\/en.dict.itop-tickets.php", + "2.x\/itop-tickets\/dictionaries\/pt_br.dict.itop-tickets.php", + "2.x\/itop-tickets\/dictionaries\/fr.dict.itop-tickets.php", + "2.x\/itop-tickets\/dictionaries\/sk.dict.itop-tickets.php", + "2.x\/itop-tickets\/dictionaries\/ja.dict.itop-tickets.php", + "2.x\/itop-tickets\/dictionaries\/ru.dict.itop-tickets.php", + "2.x\/itop-tickets\/dictionaries\/hu.dict.itop-tickets.php", + "2.x\/itop-tickets\/dictionaries\/de.dict.itop-tickets.php", + "2.x\/itop-tickets\/dictionaries\/en_gb.dict.itop-tickets.php", + "2.x\/itop-tickets\/dictionaries\/zh_cn.dict.itop-tickets.php" + ], + "installed_version": "3.3.0", + "available_version": "3.3.0", + "install": { + "flag": 1, + "message": "" + }, + "uninstall": { + "flag": 1, + "message": "" + } + }, + "itop-welcome-itil": { + "label": "ITIL skin", + "category": "skin", + "dependencies": [], + "mandatory": true, + "visible": false, + "datamodel": [], + "webservice": [], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-welcome-itil\/module.itop-welcome-itil.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-welcome-itil", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-welcome-itil\/module.itop-welcome-itil.php", + "dictionary": [ + "2.x\/itop-welcome-itil\/dictionaries\/da.dict.itop-welcome-itil.php", + "2.x\/itop-welcome-itil\/dictionaries\/es_cr.dict.itop-welcome-itil.php", + "2.x\/itop-welcome-itil\/dictionaries\/sk.dict.itop-welcome-itil.php", + "2.x\/itop-welcome-itil\/dictionaries\/nl.dict.itop-welcome-itil.php", + "2.x\/itop-welcome-itil\/dictionaries\/en.dict.itop-welcome-itil.php", + "2.x\/itop-welcome-itil\/dictionaries\/fr.dict.itop-welcome-itil.php", + "2.x\/itop-welcome-itil\/dictionaries\/ru.dict.itop-welcome-itil.php", + "2.x\/itop-welcome-itil\/dictionaries\/ja.dict.itop-welcome-itil.php", + "2.x\/itop-welcome-itil\/dictionaries\/de.dict.itop-welcome-itil.php", + "2.x\/itop-welcome-itil\/dictionaries\/it.dict.itop-welcome-itil.php", + "2.x\/itop-welcome-itil\/dictionaries\/pl.dict.itop-welcome-itil.php", + "2.x\/itop-welcome-itil\/dictionaries\/tr.dict.itop-welcome-itil.php", + "2.x\/itop-welcome-itil\/dictionaries\/en_gb.dict.itop-welcome-itil.php", + "2.x\/itop-welcome-itil\/dictionaries\/hu.dict.itop-welcome-itil.php", + "2.x\/itop-welcome-itil\/dictionaries\/zh_cn.dict.itop-welcome-itil.php", + "2.x\/itop-welcome-itil\/dictionaries\/cs.dict.itop-welcome-itil.php", + "2.x\/itop-welcome-itil\/dictionaries\/pt_br.dict.itop-welcome-itil.php" + ], + "installed_version": "3.3.0", + "available_version": "3.3.0", + "install": { + "flag": 2, + "message": "the module is part of the application" + }, + "uninstall": { + "flag": 3, + "message": "the module is part of the application" + } + }, + "combodo-db-tools": { + "label": "Database maintenance tools", + "category": "business", + "dependencies": [ + "itop-structure\/3.0.0" + ], + "mandatory": false, + "visible": true, + "datamodel": [ + "src\/Service\/DBToolsUtils.php", + "src\/Service\/DBAnalyzerUtils.php" + ], + "webservice": [], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/combodo-db-tools\/module.combodo-db-tools.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/combodo-db-tools", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/combodo-db-tools\/module.combodo-db-tools.php", + "dictionary": [ + "2.x\/combodo-db-tools\/dictionaries\/en.dict.combodo-db-tools.php", + "2.x\/combodo-db-tools\/dictionaries\/pl.dict.combodo-db-tools.php", + "2.x\/combodo-db-tools\/dictionaries\/pt_br.dict.combodo-db-tools.php", + "2.x\/combodo-db-tools\/dictionaries\/zh_cn.dict.combodo-db-tools.php", + "2.x\/combodo-db-tools\/dictionaries\/en_gb.dict.combodo-db-tools.php", + "2.x\/combodo-db-tools\/dictionaries\/nl.dict.combodo-db-tools.php", + "2.x\/combodo-db-tools\/dictionaries\/ru.dict.combodo-db-tools.php", + "2.x\/combodo-db-tools\/dictionaries\/es_cr.dict.combodo-db-tools.php", + "2.x\/combodo-db-tools\/dictionaries\/tr.dict.combodo-db-tools.php", + "2.x\/combodo-db-tools\/dictionaries\/da.dict.combodo-db-tools.php", + "2.x\/combodo-db-tools\/dictionaries\/ja.dict.combodo-db-tools.php", + "2.x\/combodo-db-tools\/dictionaries\/de.dict.combodo-db-tools.php", + "2.x\/combodo-db-tools\/dictionaries\/hu.dict.combodo-db-tools.php", + "2.x\/combodo-db-tools\/dictionaries\/fr.dict.combodo-db-tools.php", + "2.x\/combodo-db-tools\/dictionaries\/it.dict.combodo-db-tools.php", + "2.x\/combodo-db-tools\/dictionaries\/sk.dict.combodo-db-tools.php", + "2.x\/combodo-db-tools\/dictionaries\/cs.dict.combodo-db-tools.php" + ], + "installed_version": "3.3.0", + "available_version": "3.3.0", + "install": { + "flag": 1, + "message": "" + }, + "uninstall": { + "flag": 1, + "message": "" + } + }, + "itop-config-mgmt": { + "label": "Configuration Management (CMDB)", + "category": "business", + "dependencies": [ + "itop-structure\/2.7.1" + ], + "mandatory": false, + "visible": true, + "installer": "ConfigMgmtInstaller", + "datamodel": [ + "model.itop-config-mgmt.php", + "main.itop-config-mgmt.php" + ], + "data.struct": [ + "data\/en_us.data.itop-brand.xml", + "data\/en_us.data.itop-osfamily.xml", + "data\/en_us.data.itop-osversion.xml" + ], + "data.sample": [ + "data.sample.model.xml", + "data.sample.networkdevicetype.xml", + "data.sample.servers.xml", + "data.sample.nw-devices.xml", + "data.sample.software.xml", + "data.sample.dbserver.xml", + "data.sample.dbschema.xml", + "data.sample.webserver.xml", + "data.sample.webapp.xml", + "data.sample.applications.xml", + "data.sample.applicationsolutionci.xml" + ], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-config-mgmt\/module.itop-config-mgmt.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-config-mgmt", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-config-mgmt\/module.itop-config-mgmt.php", + "dictionary": [ + "2.x\/itop-config-mgmt\/dictionaries\/ru.dict.itop-config-mgmt.php", + "2.x\/itop-config-mgmt\/dictionaries\/tr.dict.itop-config-mgmt.php", + "2.x\/itop-config-mgmt\/dictionaries\/it.dict.itop-config-mgmt.php", + "2.x\/itop-config-mgmt\/dictionaries\/pl.dict.itop-config-mgmt.php", + "2.x\/itop-config-mgmt\/dictionaries\/de.dict.itop-config-mgmt.php", + "2.x\/itop-config-mgmt\/dictionaries\/en_gb.dict.itop-config-mgmt.php", + "2.x\/itop-config-mgmt\/dictionaries\/fr.dict.itop-config-mgmt.php", + "2.x\/itop-config-mgmt\/dictionaries\/hu.dict.itop-config-mgmt.php", + "2.x\/itop-config-mgmt\/dictionaries\/nl.dict.itop-config-mgmt.php", + "2.x\/itop-config-mgmt\/dictionaries\/en.dict.itop-config-mgmt.php", + "2.x\/itop-config-mgmt\/dictionaries\/cs.dict.itop-config-mgmt.php", + "2.x\/itop-config-mgmt\/dictionaries\/ja.dict.itop-config-mgmt.php", + "2.x\/itop-config-mgmt\/dictionaries\/sk.dict.itop-config-mgmt.php", + "2.x\/itop-config-mgmt\/dictionaries\/zh_cn.dict.itop-config-mgmt.php", + "2.x\/itop-config-mgmt\/dictionaries\/da.dict.itop-config-mgmt.php", + "2.x\/itop-config-mgmt\/dictionaries\/pt_br.dict.itop-config-mgmt.php", + "2.x\/itop-config-mgmt\/dictionaries\/es_cr.dict.itop-config-mgmt.php" + ], + "installed_version": "3.3.0", + "available_version": "3.3.0", + "install": { + "flag": 1, + "message": "" + }, + "uninstall": { + "flag": 1, + "message": "" + } + }, + "itop-core-update": { + "label": "iTop Core Update", + "category": "business", + "dependencies": [ + "itop-files-information\/2.7.0", + "combodo-db-tools\/2.7.0" + ], + "mandatory": false, + "visible": true, + "datamodel": [ + "src\/Service\/RunTimeEnvironmentCoreUpdater.php", + "src\/Service\/CoreUpdater.php", + "src\/Controller\/UpdateController.php", + "src\/Controller\/AjaxController.php" + ], + "webservice": [], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-core-update\/module.itop-core-update.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-core-update", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-core-update\/module.itop-core-update.php", + "dictionary": [ + "2.x\/itop-core-update\/dictionaries\/ru.dict.itop-core-update.php", + "2.x\/itop-core-update\/dictionaries\/de.dict.itop-core-update.php", + "2.x\/itop-core-update\/dictionaries\/hu.dict.itop-core-update.php", + "2.x\/itop-core-update\/dictionaries\/es_cr.dict.itop-core-update.php", + "2.x\/itop-core-update\/dictionaries\/cs.dict.itop-core-update.php", + "2.x\/itop-core-update\/dictionaries\/sk.dict.itop-core-update.php", + "2.x\/itop-core-update\/dictionaries\/pl.dict.itop-core-update.php", + "2.x\/itop-core-update\/dictionaries\/zh_cn.dict.itop-core-update.php", + "2.x\/itop-core-update\/dictionaries\/fr.dict.itop-core-update.php", + "2.x\/itop-core-update\/dictionaries\/da.dict.itop-core-update.php", + "2.x\/itop-core-update\/dictionaries\/en_gb.dict.itop-core-update.php", + "2.x\/itop-core-update\/dictionaries\/it.dict.itop-core-update.php", + "2.x\/itop-core-update\/dictionaries\/pt_br.dict.itop-core-update.php", + "2.x\/itop-core-update\/dictionaries\/en.dict.itop-core-update.php", + "2.x\/itop-core-update\/dictionaries\/nl.dict.itop-core-update.php", + "2.x\/itop-core-update\/dictionaries\/tr.dict.itop-core-update.php", + "2.x\/itop-core-update\/dictionaries\/ja.dict.itop-core-update.php" + ], + "installed_version": "3.3.0", + "available_version": "3.3.0", + "install": { + "flag": 1, + "message": "" + }, + "uninstall": { + "flag": 1, + "message": "" + } + }, + "itop-datacenter-mgmt": { + "label": "Datacenter Management", + "category": "business", + "dependencies": [ + "itop-config-mgmt\/2.2.0" + ], + "mandatory": false, + "visible": true, + "datamodel": [], + "webservice": [], + "data.struct": [], + "data.sample": [ + "data.sample.racks.xml" + ], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-datacenter-mgmt\/module.itop-datacenter-mgmt.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-datacenter-mgmt", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-datacenter-mgmt\/module.itop-datacenter-mgmt.php", + "dictionary": [ + "2.x\/itop-datacenter-mgmt\/dictionaries\/tr.dict.itop-datacenter-mgmt.php", + "2.x\/itop-datacenter-mgmt\/dictionaries\/ja.dict.itop-datacenter-mgmt.php", + "2.x\/itop-datacenter-mgmt\/dictionaries\/sk.dict.itop-datacenter-mgmt.php", + "2.x\/itop-datacenter-mgmt\/dictionaries\/da.dict.itop-datacenter-mgmt.php", + "2.x\/itop-datacenter-mgmt\/dictionaries\/es_cr.dict.itop-datacenter-mgmt.php", + "2.x\/itop-datacenter-mgmt\/dictionaries\/pl.dict.itop-datacenter-mgmt.php", + "2.x\/itop-datacenter-mgmt\/dictionaries\/ru.dict.itop-datacenter-mgmt.php", + "2.x\/itop-datacenter-mgmt\/dictionaries\/en.dict.itop-datacenter-mgmt.php", + "2.x\/itop-datacenter-mgmt\/dictionaries\/it.dict.itop-datacenter-mgmt.php", + "2.x\/itop-datacenter-mgmt\/dictionaries\/zh_cn.dict.itop-datacenter-mgmt.php", + "2.x\/itop-datacenter-mgmt\/dictionaries\/de.dict.itop-datacenter-mgmt.php", + "2.x\/itop-datacenter-mgmt\/dictionaries\/hu.dict.itop-datacenter-mgmt.php", + "2.x\/itop-datacenter-mgmt\/dictionaries\/cs.dict.itop-datacenter-mgmt.php", + "2.x\/itop-datacenter-mgmt\/dictionaries\/en_gb.dict.itop-datacenter-mgmt.php", + "2.x\/itop-datacenter-mgmt\/dictionaries\/fr.dict.itop-datacenter-mgmt.php", + "2.x\/itop-datacenter-mgmt\/dictionaries\/pt_br.dict.itop-datacenter-mgmt.php", + "2.x\/itop-datacenter-mgmt\/dictionaries\/nl.dict.itop-datacenter-mgmt.php" + ], + "installed_version": "3.3.0", + "available_version": "3.3.0", + "install": { + "flag": 1, + "message": "" + }, + "uninstall": { + "flag": 1, + "message": "" + } + }, + "itop-endusers-devices": { + "label": "End-user Devices Management", + "category": "business", + "dependencies": [ + "itop-config-mgmt\/2.2.0" + ], + "mandatory": false, + "visible": true, + "installer": "EndUserMgmtInstaller", + "datamodel": [], + "webservice": [], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-endusers-devices\/module.itop-endusers-devices.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-endusers-devices", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-endusers-devices\/module.itop-endusers-devices.php", + "dictionary": [ + "2.x\/itop-endusers-devices\/dictionaries\/pl.dict.itop-endusers-devices.php", + "2.x\/itop-endusers-devices\/dictionaries\/cs.dict.itop-endusers-devices.php", + "2.x\/itop-endusers-devices\/dictionaries\/en.dict.itop-endusers-devices.php", + "2.x\/itop-endusers-devices\/dictionaries\/ru.dict.itop-endusers-devices.php", + "2.x\/itop-endusers-devices\/dictionaries\/it.dict.itop-endusers-devices.php", + "2.x\/itop-endusers-devices\/dictionaries\/en_gb.dict.itop-endusers-devices.php", + "2.x\/itop-endusers-devices\/dictionaries\/sk.dict.itop-endusers-devices.php", + "2.x\/itop-endusers-devices\/dictionaries\/es_cr.dict.itop-endusers-devices.php", + "2.x\/itop-endusers-devices\/dictionaries\/de.dict.itop-endusers-devices.php", + "2.x\/itop-endusers-devices\/dictionaries\/fr.dict.itop-endusers-devices.php", + "2.x\/itop-endusers-devices\/dictionaries\/tr.dict.itop-endusers-devices.php", + "2.x\/itop-endusers-devices\/dictionaries\/hu.dict.itop-endusers-devices.php", + "2.x\/itop-endusers-devices\/dictionaries\/da.dict.itop-endusers-devices.php", + "2.x\/itop-endusers-devices\/dictionaries\/zh_cn.dict.itop-endusers-devices.php", + "2.x\/itop-endusers-devices\/dictionaries\/nl.dict.itop-endusers-devices.php", + "2.x\/itop-endusers-devices\/dictionaries\/ja.dict.itop-endusers-devices.php", + "2.x\/itop-endusers-devices\/dictionaries\/pt_br.dict.itop-endusers-devices.php" + ], + "installed_version": "3.3.0", + "available_version": "3.3.0", + "install": { + "flag": 1, + "message": "" + }, + "uninstall": { + "flag": 1, + "message": "" + } + }, + "itop-faq-light": { + "label": "Frequently Asked Questions Database", + "category": "business", + "dependencies": [ + "itop-structure\/3.0.0 || itop-portal\/3.0.0" + ], + "mandatory": false, + "visible": true, + "installer": "FAQLightInstaller", + "datamodel": [], + "data.struct": [], + "data.sample": [ + "data.sample.faq-domains.xml" + ], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-faq-light\/module.itop-faq-light.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-faq-light", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-faq-light\/module.itop-faq-light.php", + "dictionary": [ + "2.x\/itop-faq-light\/dictionaries\/pl.dict.itop-faq-light.php", + "2.x\/itop-faq-light\/dictionaries\/da.dict.itop-faq-light.php", + "2.x\/itop-faq-light\/dictionaries\/en.dict.itop-faq-light.php", + "2.x\/itop-faq-light\/dictionaries\/zh_cn.dict.itop-faq-light.php", + "2.x\/itop-faq-light\/dictionaries\/es_cr.dict.itop-faq-light.php", + "2.x\/itop-faq-light\/dictionaries\/nl.dict.itop-faq-light.php", + "2.x\/itop-faq-light\/dictionaries\/pt_br.dict.itop-faq-light.php", + "2.x\/itop-faq-light\/dictionaries\/cs.dict.itop-faq-light.php", + "2.x\/itop-faq-light\/dictionaries\/ru.dict.itop-faq-light.php", + "2.x\/itop-faq-light\/dictionaries\/en_gb.dict.itop-faq-light.php", + "2.x\/itop-faq-light\/dictionaries\/tr.dict.itop-faq-light.php", + "2.x\/itop-faq-light\/dictionaries\/it.dict.itop-faq-light.php", + "2.x\/itop-faq-light\/dictionaries\/fr.dict.itop-faq-light.php", + "2.x\/itop-faq-light\/dictionaries\/hu.dict.itop-faq-light.php", + "2.x\/itop-faq-light\/dictionaries\/sk.dict.itop-faq-light.php", + "2.x\/itop-faq-light\/dictionaries\/de.dict.itop-faq-light.php", + "2.x\/itop-faq-light\/dictionaries\/ja.dict.itop-faq-light.php" + ], + "installed_version": "", + "available_version": "3.3.0", + "install": { + "flag": 1, + "message": "" + } + }, + "itop-hub-connector": { + "label": "iTop Hub Connector", + "category": "business", + "dependencies": [ + "itop-config-mgmt\/2.4.0" + ], + "mandatory": false, + "visible": true, + "datamodel": [ + "menus.php", + "hubnewsroomprovider.class.inc.php" + ], + "webservice": [], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-hub-connector\/module.itop-hub-connector.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-hub-connector", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-hub-connector\/module.itop-hub-connector.php", + "dictionary": [ + "2.x\/itop-hub-connector\/dictionaries\/en_gb.dict.itop-hub-connector.php", + "2.x\/itop-hub-connector\/dictionaries\/it.dict.itop-hub-connector.php", + "2.x\/itop-hub-connector\/dictionaries\/zh_cn.dict.itop-hub-connector.php", + "2.x\/itop-hub-connector\/dictionaries\/sk.dict.itop-hub-connector.php", + "2.x\/itop-hub-connector\/dictionaries\/cs.dict.itop-hub-connector.php", + "2.x\/itop-hub-connector\/dictionaries\/fr.dict.itop-hub-connector.php", + "2.x\/itop-hub-connector\/dictionaries\/hu.dict.itop-hub-connector.php", + "2.x\/itop-hub-connector\/dictionaries\/ru.dict.itop-hub-connector.php", + "2.x\/itop-hub-connector\/dictionaries\/ja.dict.itop-hub-connector.php", + "2.x\/itop-hub-connector\/dictionaries\/en.dict.itop-hub-connector.php", + "2.x\/itop-hub-connector\/dictionaries\/es_cr.dict.itop-hub-connector.php", + "2.x\/itop-hub-connector\/dictionaries\/tr.dict.itop-hub-connector.php", + "2.x\/itop-hub-connector\/dictionaries\/nl.dict.itop-hub-connector.php", + "2.x\/itop-hub-connector\/dictionaries\/pl.dict.itop-hub-connector.php", + "2.x\/itop-hub-connector\/dictionaries\/de.dict.itop-hub-connector.php", + "2.x\/itop-hub-connector\/dictionaries\/pt_br.dict.itop-hub-connector.php", + "2.x\/itop-hub-connector\/dictionaries\/da.dict.itop-hub-connector.php" + ], + "installed_version": "3.3.0", + "available_version": "3.3.0", + "install": { + "flag": 1, + "message": "" + }, + "uninstall": { + "flag": 1, + "message": "" + } + }, + "itop-incident-mgmt-itil": { + "label": "Incident Management ITIL", + "category": "business", + "dependencies": [ + "itop-config-mgmt\/2.4.0", + "itop-tickets\/2.4.0", + "itop-profiles-itil\/2.3.0" + ], + "mandatory": false, + "visible": true, + "datamodel": [], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-incident-mgmt-itil\/module.itop-incident-mgmt-itil.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-incident-mgmt-itil", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-incident-mgmt-itil\/module.itop-incident-mgmt-itil.php", + "dictionary": [ + "2.x\/itop-incident-mgmt-itil\/dictionaries\/en_gb.dict.itop-incident-mgmt-itil.php", + "2.x\/itop-incident-mgmt-itil\/dictionaries\/da.dict.itop-incident-mgmt-itil.php", + "2.x\/itop-incident-mgmt-itil\/dictionaries\/en.dict.itop-incident-mgmt-itil.php", + "2.x\/itop-incident-mgmt-itil\/dictionaries\/de.dict.itop-incident-mgmt-itil.php", + "2.x\/itop-incident-mgmt-itil\/dictionaries\/zh_cn.dict.itop-incident-mgmt-itil.php", + "2.x\/itop-incident-mgmt-itil\/dictionaries\/sk.dict.itop-incident-mgmt-itil.php", + "2.x\/itop-incident-mgmt-itil\/dictionaries\/fr.dict.itop-incident-mgmt-itil.php", + "2.x\/itop-incident-mgmt-itil\/dictionaries\/hu.dict.itop-incident-mgmt-itil.php", + "2.x\/itop-incident-mgmt-itil\/dictionaries\/ja.dict.itop-incident-mgmt-itil.php", + "2.x\/itop-incident-mgmt-itil\/dictionaries\/pl.dict.itop-incident-mgmt-itil.php", + "2.x\/itop-incident-mgmt-itil\/dictionaries\/cs.dict.itop-incident-mgmt-itil.php", + "2.x\/itop-incident-mgmt-itil\/dictionaries\/nl.dict.itop-incident-mgmt-itil.php", + "2.x\/itop-incident-mgmt-itil\/dictionaries\/ru.dict.itop-incident-mgmt-itil.php", + "2.x\/itop-incident-mgmt-itil\/dictionaries\/tr.dict.itop-incident-mgmt-itil.php", + "2.x\/itop-incident-mgmt-itil\/dictionaries\/it.dict.itop-incident-mgmt-itil.php", + "2.x\/itop-incident-mgmt-itil\/dictionaries\/pt_br.dict.itop-incident-mgmt-itil.php", + "2.x\/itop-incident-mgmt-itil\/dictionaries\/es_cr.dict.itop-incident-mgmt-itil.php" + ], + "installed_version": "", + "available_version": "3.3.0", + "install": { + "flag": 1, + "message": "" + } + }, + "itop-knownerror-mgmt": { + "label": "Known Errors Database", + "category": "business", + "dependencies": [ + "itop-config-mgmt\/2.2.0" + ], + "mandatory": false, + "visible": true, + "datamodel": [], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-knownerror-mgmt\/module.itop-knownerror-mgmt.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-knownerror-mgmt", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-knownerror-mgmt\/module.itop-knownerror-mgmt.php", + "dictionary": [ + "2.x\/itop-knownerror-mgmt\/dictionaries\/hu.dict.itop-knownerror-mgmt.php", + "2.x\/itop-knownerror-mgmt\/dictionaries\/nl.dict.itop-knownerror-mgmt.php", + "2.x\/itop-knownerror-mgmt\/dictionaries\/cs.dict.itop-knownerror-mgmt.php", + "2.x\/itop-knownerror-mgmt\/dictionaries\/es_cr.dict.itop-knownerror-mgmt.php", + "2.x\/itop-knownerror-mgmt\/dictionaries\/fr.dict.itop-knownerror-mgmt.php", + "2.x\/itop-knownerror-mgmt\/dictionaries\/ru.dict.itop-knownerror-mgmt.php", + "2.x\/itop-knownerror-mgmt\/dictionaries\/en.dict.itop-knownerror-mgmt.php", + "2.x\/itop-knownerror-mgmt\/dictionaries\/da.dict.itop-knownerror-mgmt.php", + "2.x\/itop-knownerror-mgmt\/dictionaries\/it.dict.itop-knownerror-mgmt.php", + "2.x\/itop-knownerror-mgmt\/dictionaries\/sk.dict.itop-knownerror-mgmt.php", + "2.x\/itop-knownerror-mgmt\/dictionaries\/pt_br.dict.itop-knownerror-mgmt.php", + "2.x\/itop-knownerror-mgmt\/dictionaries\/tr.dict.itop-knownerror-mgmt.php", + "2.x\/itop-knownerror-mgmt\/dictionaries\/zh_cn.dict.itop-knownerror-mgmt.php", + "2.x\/itop-knownerror-mgmt\/dictionaries\/de.dict.itop-knownerror-mgmt.php", + "2.x\/itop-knownerror-mgmt\/dictionaries\/en_gb.dict.itop-knownerror-mgmt.php", + "2.x\/itop-knownerror-mgmt\/dictionaries\/pl.dict.itop-knownerror-mgmt.php", + "2.x\/itop-knownerror-mgmt\/dictionaries\/ja.dict.itop-knownerror-mgmt.php" + ], + "installed_version": "", + "available_version": "3.3.0", + "install": { + "flag": 1, + "message": "" + } + }, + "itop-oauth-client": { + "label": "OAuth 2.0 client", + "category": "business", + "dependencies": [ + "itop-welcome-itil\/3.1.0," + ], + "mandatory": false, + "visible": true, + "datamodel": [ + "vendor\/autoload.php", + "src\/Service\/PopupMenuExtension.php", + "src\/Service\/ApplicationUIExtension.php" + ], + "webservice": [], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-oauth-client\/module.itop-oauth-client.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-oauth-client", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-oauth-client\/module.itop-oauth-client.php", + "dictionary": [ + "2.x\/itop-oauth-client\/dictionaries\/tr.dict.itop-oauth-client.php", + "2.x\/itop-oauth-client\/dictionaries\/fr.dict.itop-oauth-client.php", + "2.x\/itop-oauth-client\/dictionaries\/it.dict.itop-oauth-client.php", + "2.x\/itop-oauth-client\/dictionaries\/en.dict.itop-oauth-client.php", + "2.x\/itop-oauth-client\/dictionaries\/cs.dict.itop-oauth-client.php", + "2.x\/itop-oauth-client\/dictionaries\/sk.dict.itop-oauth-client.php", + "2.x\/itop-oauth-client\/dictionaries\/pl.dict.itop-oauth-client.php", + "2.x\/itop-oauth-client\/dictionaries\/ru.dict.itop-oauth-client.php", + "2.x\/itop-oauth-client\/dictionaries\/zh_cn.dict.itop-oauth-client.php", + "2.x\/itop-oauth-client\/dictionaries\/pt_br.dict.itop-oauth-client.php", + "2.x\/itop-oauth-client\/dictionaries\/es_cr.dict.itop-oauth-client.php", + "2.x\/itop-oauth-client\/dictionaries\/nl.dict.itop-oauth-client.php", + "2.x\/itop-oauth-client\/dictionaries\/ja.dict.itop-oauth-client.php", + "2.x\/itop-oauth-client\/dictionaries\/de.dict.itop-oauth-client.php", + "2.x\/itop-oauth-client\/dictionaries\/hu.dict.itop-oauth-client.php", + "2.x\/itop-oauth-client\/dictionaries\/en_gb.dict.itop-oauth-client.php", + "2.x\/itop-oauth-client\/dictionaries\/da.dict.itop-oauth-client.php" + ], + "installed_version": "3.3.0", + "available_version": "3.3.0", + "install": { + "flag": 1, + "message": "" + }, + "uninstall": { + "flag": 1, + "message": "" + } + }, + "itop-problem-mgmt": { + "label": "Problem Management", + "category": "business", + "dependencies": [ + "itop-tickets\/2.0.0" + ], + "mandatory": false, + "visible": true, + "datamodel": [], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-problem-mgmt\/module.itop-problem-mgmt.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-problem-mgmt", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-problem-mgmt\/module.itop-problem-mgmt.php", + "dictionary": [ + "2.x\/itop-problem-mgmt\/dictionaries\/tr.dict.itop-problem-mgmt.php", + "2.x\/itop-problem-mgmt\/dictionaries\/cs.dict.itop-problem-mgmt.php", + "2.x\/itop-problem-mgmt\/dictionaries\/sk.dict.itop-problem-mgmt.php", + "2.x\/itop-problem-mgmt\/dictionaries\/pt_br.dict.itop-problem-mgmt.php", + "2.x\/itop-problem-mgmt\/dictionaries\/es_cr.dict.itop-problem-mgmt.php", + "2.x\/itop-problem-mgmt\/dictionaries\/en_gb.dict.itop-problem-mgmt.php", + "2.x\/itop-problem-mgmt\/dictionaries\/da.dict.itop-problem-mgmt.php", + "2.x\/itop-problem-mgmt\/dictionaries\/ru.dict.itop-problem-mgmt.php", + "2.x\/itop-problem-mgmt\/dictionaries\/pl.dict.itop-problem-mgmt.php", + "2.x\/itop-problem-mgmt\/dictionaries\/en.dict.itop-problem-mgmt.php", + "2.x\/itop-problem-mgmt\/dictionaries\/hu.dict.itop-problem-mgmt.php", + "2.x\/itop-problem-mgmt\/dictionaries\/fr.dict.itop-problem-mgmt.php", + "2.x\/itop-problem-mgmt\/dictionaries\/nl.dict.itop-problem-mgmt.php", + "2.x\/itop-problem-mgmt\/dictionaries\/ja.dict.itop-problem-mgmt.php", + "2.x\/itop-problem-mgmt\/dictionaries\/de.dict.itop-problem-mgmt.php", + "2.x\/itop-problem-mgmt\/dictionaries\/zh_cn.dict.itop-problem-mgmt.php", + "2.x\/itop-problem-mgmt\/dictionaries\/it.dict.itop-problem-mgmt.php" + ], + "installed_version": "", + "available_version": "3.3.0", + "install": { + "flag": 1, + "message": "" + } + }, + "itop-request-mgmt-itil": { + "label": "User request Management ITIL", + "category": "business", + "dependencies": [ + "itop-tickets\/2.4.0" + ], + "mandatory": false, + "visible": true, + "datamodel": [ + "main.itop-request-mgmt-itil.php" + ], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-request-mgmt-itil\/module.itop-request-mgmt-itil.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-request-mgmt-itil", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-request-mgmt-itil\/module.itop-request-mgmt-itil.php", + "dictionary": [ + "2.x\/itop-request-mgmt-itil\/dictionaries\/ja.dict.itop-request-mgmt-itil.php", + "2.x\/itop-request-mgmt-itil\/dictionaries\/hu.dict.itop-request-mgmt-itil.php", + "2.x\/itop-request-mgmt-itil\/dictionaries\/fr.dict.itop-request-mgmt-itil.php", + "2.x\/itop-request-mgmt-itil\/dictionaries\/nl.dict.itop-request-mgmt-itil.php", + "2.x\/itop-request-mgmt-itil\/dictionaries\/ru.dict.itop-request-mgmt-itil.php", + "2.x\/itop-request-mgmt-itil\/dictionaries\/zh_cn.dict.itop-request-mgmt-itil.php", + "2.x\/itop-request-mgmt-itil\/dictionaries\/it.dict.itop-request-mgmt-itil.php", + "2.x\/itop-request-mgmt-itil\/dictionaries\/pl.dict.itop-request-mgmt-itil.php", + "2.x\/itop-request-mgmt-itil\/dictionaries\/pt_br.dict.itop-request-mgmt-itil.php", + "2.x\/itop-request-mgmt-itil\/dictionaries\/sk.dict.itop-request-mgmt-itil.php", + "2.x\/itop-request-mgmt-itil\/dictionaries\/tr.dict.itop-request-mgmt-itil.php", + "2.x\/itop-request-mgmt-itil\/dictionaries\/es_cr.dict.itop-request-mgmt-itil.php", + "2.x\/itop-request-mgmt-itil\/dictionaries\/en_gb.dict.itop-request-mgmt-itil.php", + "2.x\/itop-request-mgmt-itil\/dictionaries\/de.dict.itop-request-mgmt-itil.php", + "2.x\/itop-request-mgmt-itil\/dictionaries\/en.dict.itop-request-mgmt-itil.php", + "2.x\/itop-request-mgmt-itil\/dictionaries\/cs.dict.itop-request-mgmt-itil.php", + "2.x\/itop-request-mgmt-itil\/dictionaries\/da.dict.itop-request-mgmt-itil.php" + ], + "installed_version": "", + "available_version": "3.3.0", + "install": { + "flag": 1, + "message": "" + } + }, + "itop-request-mgmt": { + "label": "Simple Ticket Management", + "category": "business", + "dependencies": [ + "itop-tickets\/2.4.0" + ], + "mandatory": false, + "visible": true, + "datamodel": [ + "main.itop-request-mgmt.php" + ], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-request-mgmt\/module.itop-request-mgmt.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-request-mgmt", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-request-mgmt\/module.itop-request-mgmt.php", + "dictionary": [ + "2.x\/itop-request-mgmt\/dictionaries\/tr.dict.itop-request-mgmt.php", + "2.x\/itop-request-mgmt\/dictionaries\/da.dict.itop-request-mgmt.php", + "2.x\/itop-request-mgmt\/dictionaries\/it.dict.itop-request-mgmt.php", + "2.x\/itop-request-mgmt\/dictionaries\/fr.dict.itop-request-mgmt.php", + "2.x\/itop-request-mgmt\/dictionaries\/ru.dict.itop-request-mgmt.php", + "2.x\/itop-request-mgmt\/dictionaries\/cs.dict.itop-request-mgmt.php", + "2.x\/itop-request-mgmt\/dictionaries\/hu.dict.itop-request-mgmt.php", + "2.x\/itop-request-mgmt\/dictionaries\/en.dict.itop-request-mgmt.php", + "2.x\/itop-request-mgmt\/dictionaries\/pl.dict.itop-request-mgmt.php", + "2.x\/itop-request-mgmt\/dictionaries\/sk.dict.itop-request-mgmt.php", + "2.x\/itop-request-mgmt\/dictionaries\/pt_br.dict.itop-request-mgmt.php", + "2.x\/itop-request-mgmt\/dictionaries\/zh_cn.dict.itop-request-mgmt.php", + "2.x\/itop-request-mgmt\/dictionaries\/de.dict.itop-request-mgmt.php", + "2.x\/itop-request-mgmt\/dictionaries\/es_cr.dict.itop-request-mgmt.php", + "2.x\/itop-request-mgmt\/dictionaries\/en_gb.dict.itop-request-mgmt.php", + "2.x\/itop-request-mgmt\/dictionaries\/nl.dict.itop-request-mgmt.php", + "2.x\/itop-request-mgmt\/dictionaries\/ja.dict.itop-request-mgmt.php" + ], + "installed_version": "3.3.0", + "available_version": "3.3.0", + "install": { + "flag": 1, + "message": "" + }, + "uninstall": { + "flag": 1, + "message": "" + } + }, + "itop-service-mgmt-provider": { + "label": "Service Management for Service Providers", + "category": "business", + "dependencies": [ + "itop-tickets\/2.0.0" + ], + "mandatory": false, + "visible": true, + "installer": "ServiceMgmtProviderInstaller", + "datamodel": [], + "data.struct": [], + "data.sample": [ + "data.sample.organizations.xml", + "data.sample.contracts.xml", + "data.sample.servicefamilies.xml", + "data.sample.services.xml", + "data.sample.serviceelements.xml", + "data.sample.sla.xml", + "data.sample.slt.xml", + "data.sample.sltsla.xml", + "data.sample.contractservice.xml", + "data.sample.deliverymodelcontact.xml" + ], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-service-mgmt-provider\/module.itop-service-mgmt-provider.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-service-mgmt-provider", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-service-mgmt-provider\/module.itop-service-mgmt-provider.php", + "dictionary": [ + "2.x\/itop-service-mgmt-provider\/dictionaries\/zh_cn.dict.itop-service-mgmt-provider.php", + "2.x\/itop-service-mgmt-provider\/dictionaries\/tr.dict.itop-service-mgmt-provider.php", + "2.x\/itop-service-mgmt-provider\/dictionaries\/sk.dict.itop-service-mgmt-provider.php", + "2.x\/itop-service-mgmt-provider\/dictionaries\/de.dict.itop-service-mgmt-provider.php", + "2.x\/itop-service-mgmt-provider\/dictionaries\/ja.dict.itop-service-mgmt-provider.php", + "2.x\/itop-service-mgmt-provider\/dictionaries\/ru.dict.itop-service-mgmt-provider.php", + "2.x\/itop-service-mgmt-provider\/dictionaries\/pl.dict.itop-service-mgmt-provider.php", + "2.x\/itop-service-mgmt-provider\/dictionaries\/fr.dict.itop-service-mgmt-provider.php", + "2.x\/itop-service-mgmt-provider\/dictionaries\/hu.dict.itop-service-mgmt-provider.php", + "2.x\/itop-service-mgmt-provider\/dictionaries\/en.dict.itop-service-mgmt-provider.php", + "2.x\/itop-service-mgmt-provider\/dictionaries\/it.dict.itop-service-mgmt-provider.php", + "2.x\/itop-service-mgmt-provider\/dictionaries\/cs.dict.itop-service-mgmt-provider.php", + "2.x\/itop-service-mgmt-provider\/dictionaries\/es_cr.dict.itop-service-mgmt-provider.php", + "2.x\/itop-service-mgmt-provider\/dictionaries\/pt_br.dict.itop-service-mgmt-provider.php", + "2.x\/itop-service-mgmt-provider\/dictionaries\/da.dict.itop-service-mgmt-provider.php", + "2.x\/itop-service-mgmt-provider\/dictionaries\/en_gb.dict.itop-service-mgmt-provider.php", + "2.x\/itop-service-mgmt-provider\/dictionaries\/nl.dict.itop-service-mgmt-provider.php" + ], + "installed_version": "", + "available_version": "3.3.0", + "install": { + "flag": 1, + "message": "" + } + }, + "itop-service-mgmt": { + "label": "Service Management", + "category": "business", + "dependencies": [ + "itop-tickets\/2.0.0" + ], + "mandatory": false, + "visible": true, + "installer": "ServiceMgmtInstaller", + "datamodel": [], + "data.struct": [], + "data.sample": [ + "data.sample.organizations.xml", + "data.sample.contracts.xml", + "data.sample.servicefamilies.xml", + "data.sample.services.xml", + "data.sample.serviceelements.xml", + "data.sample.sla.xml", + "data.sample.slt.xml", + "data.sample.sltsla.xml", + "data.sample.contractservice.xml", + "data.sample.deliverymodelcontact.xml" + ], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-service-mgmt\/module.itop-service-mgmt.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-service-mgmt", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-service-mgmt\/module.itop-service-mgmt.php", + "dictionary": [ + "2.x\/itop-service-mgmt\/dictionaries\/en_gb.dict.itop-service-mgmt.php", + "2.x\/itop-service-mgmt\/dictionaries\/hu.dict.itop-service-mgmt.php", + "2.x\/itop-service-mgmt\/dictionaries\/es_cr.dict.itop-service-mgmt.php", + "2.x\/itop-service-mgmt\/dictionaries\/nl.dict.itop-service-mgmt.php", + "2.x\/itop-service-mgmt\/dictionaries\/sk.dict.itop-service-mgmt.php", + "2.x\/itop-service-mgmt\/dictionaries\/it.dict.itop-service-mgmt.php", + "2.x\/itop-service-mgmt\/dictionaries\/da.dict.itop-service-mgmt.php", + "2.x\/itop-service-mgmt\/dictionaries\/zh_cn.dict.itop-service-mgmt.php", + "2.x\/itop-service-mgmt\/dictionaries\/pl.dict.itop-service-mgmt.php", + "2.x\/itop-service-mgmt\/dictionaries\/tr.dict.itop-service-mgmt.php", + "2.x\/itop-service-mgmt\/dictionaries\/en.dict.itop-service-mgmt.php", + "2.x\/itop-service-mgmt\/dictionaries\/cs.dict.itop-service-mgmt.php", + "2.x\/itop-service-mgmt\/dictionaries\/de.dict.itop-service-mgmt.php", + "2.x\/itop-service-mgmt\/dictionaries\/ja.dict.itop-service-mgmt.php", + "2.x\/itop-service-mgmt\/dictionaries\/ru.dict.itop-service-mgmt.php", + "2.x\/itop-service-mgmt\/dictionaries\/pt_br.dict.itop-service-mgmt.php", + "2.x\/itop-service-mgmt\/dictionaries\/fr.dict.itop-service-mgmt.php" + ], + "installed_version": "3.3.0", + "available_version": "3.3.0", + "install": { + "flag": 1, + "message": "" + }, + "uninstall": { + "flag": 1, + "message": "" + } + }, + "itop-storage-mgmt": { + "label": "Advanced Storage Management", + "category": "business", + "dependencies": [ + "itop-config-mgmt\/2.4.0" + ], + "mandatory": false, + "visible": true, + "installer": "StorageMgmtInstaller", + "datamodel": [], + "webservice": [], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-storage-mgmt\/module.itop-storage-mgmt.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-storage-mgmt", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-storage-mgmt\/module.itop-storage-mgmt.php", + "dictionary": [ + "2.x\/itop-storage-mgmt\/dictionaries\/en.dict.itop-storage-mgmt.php", + "2.x\/itop-storage-mgmt\/dictionaries\/cs.dict.itop-storage-mgmt.php", + "2.x\/itop-storage-mgmt\/dictionaries\/ja.dict.itop-storage-mgmt.php", + "2.x\/itop-storage-mgmt\/dictionaries\/da.dict.itop-storage-mgmt.php", + "2.x\/itop-storage-mgmt\/dictionaries\/pt_br.dict.itop-storage-mgmt.php", + "2.x\/itop-storage-mgmt\/dictionaries\/it.dict.itop-storage-mgmt.php", + "2.x\/itop-storage-mgmt\/dictionaries\/nl.dict.itop-storage-mgmt.php", + "2.x\/itop-storage-mgmt\/dictionaries\/fr.dict.itop-storage-mgmt.php", + "2.x\/itop-storage-mgmt\/dictionaries\/tr.dict.itop-storage-mgmt.php", + "2.x\/itop-storage-mgmt\/dictionaries\/es_cr.dict.itop-storage-mgmt.php", + "2.x\/itop-storage-mgmt\/dictionaries\/sk.dict.itop-storage-mgmt.php", + "2.x\/itop-storage-mgmt\/dictionaries\/zh_cn.dict.itop-storage-mgmt.php", + "2.x\/itop-storage-mgmt\/dictionaries\/en_gb.dict.itop-storage-mgmt.php", + "2.x\/itop-storage-mgmt\/dictionaries\/de.dict.itop-storage-mgmt.php", + "2.x\/itop-storage-mgmt\/dictionaries\/hu.dict.itop-storage-mgmt.php", + "2.x\/itop-storage-mgmt\/dictionaries\/pl.dict.itop-storage-mgmt.php", + "2.x\/itop-storage-mgmt\/dictionaries\/ru.dict.itop-storage-mgmt.php" + ], + "installed_version": "3.3.0", + "available_version": "3.3.0", + "install": { + "flag": 1, + "message": "" + }, + "uninstall": { + "flag": 1, + "message": "" + } + }, + "itop-virtualization-mgmt": { + "label": "Virtualization Management", + "category": "business", + "dependencies": [ + "itop-config-mgmt\/2.4.0" + ], + "mandatory": false, + "visible": true, + "datamodel": [], + "webservice": [], + "data.struct": [], + "data.sample": [ + "data.sample.farm.xml", + "data.sample.hypervisor.xml", + "data.sample.vm.xml", + "data.sample.dbserver.xml", + "data.sample.dbschema.xml", + "data.sample.webserver.xml", + "data.sample.webapp.xml", + "data.sample.applicationsolutionci.xml" + ], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-virtualization-mgmt\/module.itop-virtualization-mgmt.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-virtualization-mgmt", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-virtualization-mgmt\/module.itop-virtualization-mgmt.php", + "dictionary": [ + "2.x\/itop-virtualization-mgmt\/dictionaries\/de.dict.itop-virtualization-mgmt.php", + "2.x\/itop-virtualization-mgmt\/dictionaries\/en_gb.dict.itop-virtualization-mgmt.php", + "2.x\/itop-virtualization-mgmt\/dictionaries\/nl.dict.itop-virtualization-mgmt.php", + "2.x\/itop-virtualization-mgmt\/dictionaries\/ja.dict.itop-virtualization-mgmt.php", + "2.x\/itop-virtualization-mgmt\/dictionaries\/zh_cn.dict.itop-virtualization-mgmt.php", + "2.x\/itop-virtualization-mgmt\/dictionaries\/ru.dict.itop-virtualization-mgmt.php", + "2.x\/itop-virtualization-mgmt\/dictionaries\/sk.dict.itop-virtualization-mgmt.php", + "2.x\/itop-virtualization-mgmt\/dictionaries\/tr.dict.itop-virtualization-mgmt.php", + "2.x\/itop-virtualization-mgmt\/dictionaries\/fr.dict.itop-virtualization-mgmt.php", + "2.x\/itop-virtualization-mgmt\/dictionaries\/cs.dict.itop-virtualization-mgmt.php", + "2.x\/itop-virtualization-mgmt\/dictionaries\/da.dict.itop-virtualization-mgmt.php", + "2.x\/itop-virtualization-mgmt\/dictionaries\/hu.dict.itop-virtualization-mgmt.php", + "2.x\/itop-virtualization-mgmt\/dictionaries\/es_cr.dict.itop-virtualization-mgmt.php", + "2.x\/itop-virtualization-mgmt\/dictionaries\/en.dict.itop-virtualization-mgmt.php", + "2.x\/itop-virtualization-mgmt\/dictionaries\/pl.dict.itop-virtualization-mgmt.php", + "2.x\/itop-virtualization-mgmt\/dictionaries\/pt_br.dict.itop-virtualization-mgmt.php", + "2.x\/itop-virtualization-mgmt\/dictionaries\/it.dict.itop-virtualization-mgmt.php" + ], + "installed_version": "3.3.0", + "available_version": "3.3.0", + "install": { + "flag": 1, + "message": "" + }, + "uninstall": { + "flag": 1, + "message": "" + } + }, + "itop-bridge-cmdb-services": { + "label": "Bridge for CMDB and Services", + "category": "business", + "dependencies": [ + "itop-config-mgmt\/2.7.1", + "itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1" + ], + "mandatory": false, + "visible": false, + "auto_select": "SetupInfo::ModuleIsSelected(\"itop-config-mgmt\") && (SetupInfo::ModuleIsSelected(\"itop-service-mgmt\") || SetupInfo::ModuleIsSelected(\"itop-service-mgmt-provider\")) ", + "datamodel": [], + "webservice": [], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-bridge-cmdb-services\/module.itop-bridge-cmdb-services.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-bridge-cmdb-services", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-bridge-cmdb-services\/module.itop-bridge-cmdb-services.php", + "dictionary": [ + "2.x\/itop-bridge-cmdb-services\/dictionaries\/es_cr.dict.itop-bridge-cmdb-services.php", + "2.x\/itop-bridge-cmdb-services\/dictionaries\/cs.dict.itop-bridge-cmdb-services.php", + "2.x\/itop-bridge-cmdb-services\/dictionaries\/ja.dict.itop-bridge-cmdb-services.php", + "2.x\/itop-bridge-cmdb-services\/dictionaries\/hu.dict.itop-bridge-cmdb-services.php", + "2.x\/itop-bridge-cmdb-services\/dictionaries\/it.dict.itop-bridge-cmdb-services.php", + "2.x\/itop-bridge-cmdb-services\/dictionaries\/fr.dict.itop-bridge-cmdb-services.php", + "2.x\/itop-bridge-cmdb-services\/dictionaries\/pl.dict.itop-bridge-cmdb-services.php", + "2.x\/itop-bridge-cmdb-services\/dictionaries\/pt_br.dict.itop-bridge-cmdb-services.php", + "2.x\/itop-bridge-cmdb-services\/dictionaries\/nl.dict.itop-bridge-cmdb-services.php", + "2.x\/itop-bridge-cmdb-services\/dictionaries\/tr.dict.itop-bridge-cmdb-services.php", + "2.x\/itop-bridge-cmdb-services\/dictionaries\/da.dict.itop-bridge-cmdb-services.php", + "2.x\/itop-bridge-cmdb-services\/dictionaries\/ru.dict.itop-bridge-cmdb-services.php", + "2.x\/itop-bridge-cmdb-services\/dictionaries\/de.dict.itop-bridge-cmdb-services.php", + "2.x\/itop-bridge-cmdb-services\/dictionaries\/sk.dict.itop-bridge-cmdb-services.php", + "2.x\/itop-bridge-cmdb-services\/dictionaries\/zh_cn.dict.itop-bridge-cmdb-services.php", + "2.x\/itop-bridge-cmdb-services\/dictionaries\/en.dict.itop-bridge-cmdb-services.php", + "2.x\/itop-bridge-cmdb-services\/dictionaries\/en_gb.dict.itop-bridge-cmdb-services.php" + ], + "installed_version": "3.3.0", + "available_version": "3.3.0", + "install": { + "flag": 1, + "message": "" + }, + "uninstall": { + "flag": 1, + "message": "" + } + }, + "itop-bridge-cmdb-ticket": { + "label": "Bridge for CMDB and Ticket", + "category": "business", + "dependencies": [ + "itop-config-mgmt\/2.7.1", + "itop-tickets\/2.7.0" + ], + "mandatory": false, + "visible": false, + "auto_select": "SetupInfo::ModuleIsSelected(\"itop-config-mgmt\") && SetupInfo::ModuleIsSelected(\"itop-tickets\") ", + "datamodel": [], + "webservice": [], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-bridge-cmdb-ticket\/module.itop-bridge-cmdb-ticket.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-bridge-cmdb-ticket", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-bridge-cmdb-ticket\/module.itop-bridge-cmdb-ticket.php", + "dictionary": [ + "2.x\/itop-bridge-cmdb-ticket\/dictionaries\/it.dict.itop-bridge-cmdb-ticket.php", + "2.x\/itop-bridge-cmdb-ticket\/dictionaries\/ru.dict.itop-bridge-cmdb-ticket.php", + "2.x\/itop-bridge-cmdb-ticket\/dictionaries\/pt_br.dict.itop-bridge-cmdb-ticket.php", + "2.x\/itop-bridge-cmdb-ticket\/dictionaries\/zh_cn.dict.itop-bridge-cmdb-ticket.php", + "2.x\/itop-bridge-cmdb-ticket\/dictionaries\/en.dict.itop-bridge-cmdb-ticket.php", + "2.x\/itop-bridge-cmdb-ticket\/dictionaries\/ja.dict.itop-bridge-cmdb-ticket.php", + "2.x\/itop-bridge-cmdb-ticket\/dictionaries\/en_gb.dict.itop-bridge-cmdb-ticket.php", + "2.x\/itop-bridge-cmdb-ticket\/dictionaries\/hu.dict.itop-bridge-cmdb-ticket.php", + "2.x\/itop-bridge-cmdb-ticket\/dictionaries\/de.dict.itop-bridge-cmdb-ticket.php", + "2.x\/itop-bridge-cmdb-ticket\/dictionaries\/es_cr.dict.itop-bridge-cmdb-ticket.php", + "2.x\/itop-bridge-cmdb-ticket\/dictionaries\/tr.dict.itop-bridge-cmdb-ticket.php", + "2.x\/itop-bridge-cmdb-ticket\/dictionaries\/pl.dict.itop-bridge-cmdb-ticket.php", + "2.x\/itop-bridge-cmdb-ticket\/dictionaries\/fr.dict.itop-bridge-cmdb-ticket.php", + "2.x\/itop-bridge-cmdb-ticket\/dictionaries\/cs.dict.itop-bridge-cmdb-ticket.php", + "2.x\/itop-bridge-cmdb-ticket\/dictionaries\/da.dict.itop-bridge-cmdb-ticket.php", + "2.x\/itop-bridge-cmdb-ticket\/dictionaries\/nl.dict.itop-bridge-cmdb-ticket.php", + "2.x\/itop-bridge-cmdb-ticket\/dictionaries\/sk.dict.itop-bridge-cmdb-ticket.php" + ], + "installed_version": "3.3.0", + "available_version": "3.3.0", + "install": { + "flag": 1, + "message": "" + }, + "uninstall": { + "flag": 1, + "message": "" + } + }, + "itop-bridge-datacenter-mgmt-services": { + "label": "Bridge for CMDB Virtualization objects and Services", + "category": "business", + "dependencies": [ + "itop-config-mgmt\/2.7.1", + "itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1", + "itop-datacenter-mgmt\/3.1.0" + ], + "mandatory": false, + "visible": false, + "auto_select": "SetupInfo::ModuleIsSelected(\"itop-datacenter-mgmt\") && (SetupInfo::ModuleIsSelected(\"itop-service-mgmt\") || SetupInfo::ModuleIsSelected(\"itop-service-mgmt-provider\")) ", + "datamodel": [], + "webservice": [], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-bridge-datacenter-mgmt-services\/module.itop-bridge-datacenter-mgmt-services.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-bridge-datacenter-mgmt-services", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-bridge-datacenter-mgmt-services\/module.itop-bridge-datacenter-mgmt-services.php", + "installed_version": "3.3.0", + "available_version": "3.3.0", + "install": { + "flag": 1, + "message": "" + }, + "uninstall": { + "flag": 1, + "message": "" + } + }, + "itop-bridge-endusers-devices-services": { + "label": "Bridge for CMDB endusers objects and Services", + "category": "business", + "dependencies": [ + "itop-config-mgmt\/2.7.1", + "itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1", + "itop-endusers-devices\/3.1.0" + ], + "mandatory": false, + "visible": false, + "auto_select": "SetupInfo::ModuleIsSelected(\"itop-endusers-devices\") && (SetupInfo::ModuleIsSelected(\"itop-service-mgmt\") || SetupInfo::ModuleIsSelected(\"itop-service-mgmt-provider\")) ", + "datamodel": [], + "webservice": [], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-bridge-endusers-devices-services\/module.itop-bridge-endusers-devices-services.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-bridge-endusers-devices-services", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-bridge-endusers-devices-services\/module.itop-bridge-endusers-devices-services.php", + "installed_version": "3.3.0", + "available_version": "3.3.0", + "install": { + "flag": 1, + "message": "" + }, + "uninstall": { + "flag": 1, + "message": "" + } + }, + "itop-bridge-storage-mgmt-services": { + "label": "Bridge for CMDB Virtualization objects and Services", + "category": "business", + "dependencies": [ + "itop-config-mgmt\/2.7.1", + "itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1", + "itop-storage-mgmt\/3.1.0" + ], + "mandatory": false, + "visible": false, + "auto_select": "SetupInfo::ModuleIsSelected(\"itop-storage-mgmt\") && (SetupInfo::ModuleIsSelected(\"itop-service-mgmt\") || SetupInfo::ModuleIsSelected(\"itop-service-mgmt-provider\")) ", + "datamodel": [], + "webservice": [], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-bridge-storage-mgmt-services\/module.itop-bridge-storage-mgmt-services.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-bridge-storage-mgmt-services", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-bridge-storage-mgmt-services\/module.itop-bridge-storage-mgmt-services.php", + "installed_version": "3.3.0", + "available_version": "3.3.0", + "install": { + "flag": 1, + "message": "" + }, + "uninstall": { + "flag": 1, + "message": "" + } + }, + "itop-bridge-virtualization-mgmt-services": { + "label": "Bridge for CMDB Virtualization objects and Services", + "category": "business", + "dependencies": [ + "itop-config-mgmt\/2.7.1", + "itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1", + "itop-virtualization-mgmt\/3.1.0" + ], + "mandatory": false, + "visible": false, + "auto_select": "SetupInfo::ModuleIsSelected(\"itop-virtualization-mgmt\") && (SetupInfo::ModuleIsSelected(\"itop-service-mgmt\") || SetupInfo::ModuleIsSelected(\"itop-service-mgmt-provider\")) ", + "datamodel": [], + "webservice": [], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-bridge-virtualization-mgmt-services\/module.itop-bridge-virtualization-mgmt-services.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-bridge-virtualization-mgmt-services", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-bridge-virtualization-mgmt-services\/module.itop-bridge-virtualization-mgmt-services.php", + "installed_version": "3.3.0", + "available_version": "3.3.0", + "install": { + "flag": 1, + "message": "" + }, + "uninstall": { + "flag": 1, + "message": "" + } + }, + "itop-bridge-virtualization-storage": { + "label": "Links between virtualization and storage", + "category": "business", + "dependencies": [ + "itop-storage-mgmt\/2.2.0", + "itop-virtualization-mgmt\/2.2.0" + ], + "mandatory": false, + "visible": false, + "auto_select": "SetupInfo::ModuleIsSelected(\"itop-storage-mgmt\") && SetupInfo::ModuleIsSelected(\"itop-virtualization-mgmt\")", + "datamodel": [], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-bridge-virtualization-storage\/module.itop-bridge-virtualization-storage.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-bridge-virtualization-storage", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-bridge-virtualization-storage\/module.itop-bridge-virtualization-storage.php", + "installed_version": "3.3.0", + "available_version": "3.3.0", + "install": { + "flag": 1, + "message": "" + }, + "uninstall": { + "flag": 1, + "message": "" + } + }, + "itop-change-mgmt-itil": { + "label": "Change Management ITIL", + "category": "business", + "dependencies": [ + "itop-config-mgmt\/2.2.0", + "itop-tickets\/2.0.0" + ], + "mandatory": false, + "visible": true, + "datamodel": [], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-change-mgmt-itil\/module.itop-change-mgmt-itil.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-change-mgmt-itil", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-change-mgmt-itil\/module.itop-change-mgmt-itil.php", + "dictionary": [ + "2.x\/itop-change-mgmt-itil\/dictionaries\/hu.dict.itop-change-mgmt-itil.php", + "2.x\/itop-change-mgmt-itil\/dictionaries\/tr.dict.itop-change-mgmt-itil.php", + "2.x\/itop-change-mgmt-itil\/dictionaries\/fr.dict.itop-change-mgmt-itil.php", + "2.x\/itop-change-mgmt-itil\/dictionaries\/en.dict.itop-change-mgmt-itil.php", + "2.x\/itop-change-mgmt-itil\/dictionaries\/cs.dict.itop-change-mgmt-itil.php", + "2.x\/itop-change-mgmt-itil\/dictionaries\/da.dict.itop-change-mgmt-itil.php", + "2.x\/itop-change-mgmt-itil\/dictionaries\/sk.dict.itop-change-mgmt-itil.php", + "2.x\/itop-change-mgmt-itil\/dictionaries\/en_gb.dict.itop-change-mgmt-itil.php", + "2.x\/itop-change-mgmt-itil\/dictionaries\/nl.dict.itop-change-mgmt-itil.php", + "2.x\/itop-change-mgmt-itil\/dictionaries\/ja.dict.itop-change-mgmt-itil.php", + "2.x\/itop-change-mgmt-itil\/dictionaries\/es_cr.dict.itop-change-mgmt-itil.php", + "2.x\/itop-change-mgmt-itil\/dictionaries\/zh_cn.dict.itop-change-mgmt-itil.php", + "2.x\/itop-change-mgmt-itil\/dictionaries\/de.dict.itop-change-mgmt-itil.php", + "2.x\/itop-change-mgmt-itil\/dictionaries\/it.dict.itop-change-mgmt-itil.php", + "2.x\/itop-change-mgmt-itil\/dictionaries\/ru.dict.itop-change-mgmt-itil.php", + "2.x\/itop-change-mgmt-itil\/dictionaries\/pl.dict.itop-change-mgmt-itil.php", + "2.x\/itop-change-mgmt-itil\/dictionaries\/pt_br.dict.itop-change-mgmt-itil.php" + ], + "installed_version": "", + "available_version": "3.3.0", + "install": { + "flag": 1, + "message": "" + } + }, + "itop-change-mgmt": { + "label": "Change Management", + "category": "business", + "dependencies": [ + "itop-config-mgmt\/2.2.0", + "itop-tickets\/2.0.0" + ], + "mandatory": false, + "visible": true, + "installer": "ChangeManagementInstaller", + "datamodel": [], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-change-mgmt\/module.itop-change-mgmt.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-change-mgmt", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-change-mgmt\/module.itop-change-mgmt.php", + "dictionary": [ + "2.x\/itop-change-mgmt\/dictionaries\/zh_cn.dict.itop-change-mgmt.php", + "2.x\/itop-change-mgmt\/dictionaries\/en.dict.itop-change-mgmt.php", + "2.x\/itop-change-mgmt\/dictionaries\/tr.dict.itop-change-mgmt.php", + "2.x\/itop-change-mgmt\/dictionaries\/it.dict.itop-change-mgmt.php", + "2.x\/itop-change-mgmt\/dictionaries\/cs.dict.itop-change-mgmt.php", + "2.x\/itop-change-mgmt\/dictionaries\/hu.dict.itop-change-mgmt.php", + "2.x\/itop-change-mgmt\/dictionaries\/pl.dict.itop-change-mgmt.php", + "2.x\/itop-change-mgmt\/dictionaries\/en_gb.dict.itop-change-mgmt.php", + "2.x\/itop-change-mgmt\/dictionaries\/ja.dict.itop-change-mgmt.php", + "2.x\/itop-change-mgmt\/dictionaries\/da.dict.itop-change-mgmt.php", + "2.x\/itop-change-mgmt\/dictionaries\/es_cr.dict.itop-change-mgmt.php", + "2.x\/itop-change-mgmt\/dictionaries\/de.dict.itop-change-mgmt.php", + "2.x\/itop-change-mgmt\/dictionaries\/nl.dict.itop-change-mgmt.php", + "2.x\/itop-change-mgmt\/dictionaries\/sk.dict.itop-change-mgmt.php", + "2.x\/itop-change-mgmt\/dictionaries\/ru.dict.itop-change-mgmt.php", + "2.x\/itop-change-mgmt\/dictionaries\/pt_br.dict.itop-change-mgmt.php", + "2.x\/itop-change-mgmt\/dictionaries\/fr.dict.itop-change-mgmt.php" + ], + "installed_version": "3.3.0", + "available_version": "3.3.0", + "install": { + "flag": 1, + "message": "" + }, + "uninstall": { + "flag": 1, + "message": "" + } + }, + "itop-full-itil": { + "label": "Bridge - Request management ITIL + Incident management ITIL", + "category": "business", + "dependencies": [ + "itop-request-mgmt-itil\/2.3.0", + "itop-incident-mgmt-itil\/2.3.0" + ], + "mandatory": false, + "visible": false, + "auto_select": "SetupInfo::ModuleIsSelected(\"itop-request-mgmt-itil\") && SetupInfo::ModuleIsSelected(\"itop-incident-mgmt-itil\")", + "datamodel": [], + "webservice": [], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-full-itil\/module.itop-full-itil.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-full-itil", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-full-itil\/module.itop-full-itil.php", + "installed_version": "", + "available_version": "3.3.0", + "install": { + "flag": 1, + "message": "" + } + } +} \ No newline at end of file diff --git a/tests/php-unit-tests/unitary-tests/setup/ressources/available_modules.json b/tests/php-unit-tests/unitary-tests/setup/ressources/available_modules.json new file mode 100644 index 000000000..efd6268d2 --- /dev/null +++ b/tests/php-unit-tests/unitary-tests/setup/ressources/available_modules.json @@ -0,0 +1,1822 @@ +{ + "authent-cas\/3.3.0": { + "label": "CAS SSO", + "category": "authentication", + "dependencies": [], + "mandatory": true, + "visible": true, + "datamodel": [ + "vendor\/autoload.php", + "src\/CASLoginExtension.php" + ], + "webservice": [], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": { + "cas_debug": false, + "cas_host": "", + "cas_port": "", + "cas_context": "", + "cas_version": "", + "service_base_url": "" + }, + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/authent-cas\/module.authent-cas.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/authent-cas", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/authent-cas\/module.authent-cas.php", + "dictionary": [ + "2.x\/authent-cas\/dictionaries\/de.dict.authent-cas.php", + "2.x\/authent-cas\/dictionaries\/en_gb.dict.authent-cas.php", + "2.x\/authent-cas\/dictionaries\/cs.dict.authent-cas.php", + "2.x\/authent-cas\/dictionaries\/pl.dict.authent-cas.php", + "2.x\/authent-cas\/dictionaries\/nl.dict.authent-cas.php", + "2.x\/authent-cas\/dictionaries\/da.dict.authent-cas.php", + "2.x\/authent-cas\/dictionaries\/tr.dict.authent-cas.php", + "2.x\/authent-cas\/dictionaries\/ru.dict.authent-cas.php", + "2.x\/authent-cas\/dictionaries\/ja.dict.authent-cas.php", + "2.x\/authent-cas\/dictionaries\/es_cr.dict.authent-cas.php", + "2.x\/authent-cas\/dictionaries\/it.dict.authent-cas.php", + "2.x\/authent-cas\/dictionaries\/pt_br.dict.authent-cas.php", + "2.x\/authent-cas\/dictionaries\/sk.dict.authent-cas.php", + "2.x\/authent-cas\/dictionaries\/hu.dict.authent-cas.php", + "2.x\/authent-cas\/dictionaries\/zh_cn.dict.authent-cas.php", + "2.x\/authent-cas\/dictionaries\/en.dict.authent-cas.php", + "2.x\/authent-cas\/dictionaries\/fr.dict.authent-cas.php" + ] + }, + "authent-external\/3.3.0": { + "label": "External user authentication", + "category": "authentication", + "dependencies": [], + "mandatory": false, + "visible": true, + "datamodel": [ + "model.authent-external.php" + ], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/authent-external\/module.authent-external.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/authent-external", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/authent-external\/module.authent-external.php", + "dictionary": [ + "2.x\/authent-external\/dictionaries\/fr.dict.authent-external.php", + "2.x\/authent-external\/dictionaries\/de.dict.authent-external.php", + "2.x\/authent-external\/dictionaries\/zh_cn.dict.authent-external.php", + "2.x\/authent-external\/dictionaries\/pl.dict.authent-external.php", + "2.x\/authent-external\/dictionaries\/tr.dict.authent-external.php", + "2.x\/authent-external\/dictionaries\/en_gb.dict.authent-external.php", + "2.x\/authent-external\/dictionaries\/pt_br.dict.authent-external.php", + "2.x\/authent-external\/dictionaries\/da.dict.authent-external.php", + "2.x\/authent-external\/dictionaries\/ru.dict.authent-external.php", + "2.x\/authent-external\/dictionaries\/cs.dict.authent-external.php", + "2.x\/authent-external\/dictionaries\/it.dict.authent-external.php", + "2.x\/authent-external\/dictionaries\/en.dict.authent-external.php", + "2.x\/authent-external\/dictionaries\/hu.dict.authent-external.php", + "2.x\/authent-external\/dictionaries\/sk.dict.authent-external.php", + "2.x\/authent-external\/dictionaries\/ja.dict.authent-external.php", + "2.x\/authent-external\/dictionaries\/nl.dict.authent-external.php", + "2.x\/authent-external\/dictionaries\/es_cr.dict.authent-external.php" + ] + }, + "authent-ldap\/3.3.0": { + "label": "User authentication based on LDAP", + "category": "authentication", + "dependencies": [], + "mandatory": false, + "visible": true, + "installer": "AuthentLDAPInstaller", + "datamodel": [], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": { + "uri": "ldap:\/\/localhost", + "default_user": "", + "default_pwd": "", + "base_dn": "dc=yourcompany,dc=com", + "user_query": "(&(uid=%1$s)(inetuserstatus=ACTIVE))", + "options": { + "17": 3, + "8": 0 + }, + "start_tls": false, + "debug": false, + "servers": [] + }, + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/authent-ldap\/module.authent-ldap.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/authent-ldap", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/authent-ldap\/module.authent-ldap.php", + "dictionary": [ + "2.x\/authent-ldap\/dictionaries\/en.dict.authent-ldap.php", + "2.x\/authent-ldap\/dictionaries\/pl.dict.authent-ldap.php", + "2.x\/authent-ldap\/dictionaries\/ru.dict.authent-ldap.php", + "2.x\/authent-ldap\/dictionaries\/cs.dict.authent-ldap.php", + "2.x\/authent-ldap\/dictionaries\/es_cr.dict.authent-ldap.php", + "2.x\/authent-ldap\/dictionaries\/zh_cn.dict.authent-ldap.php", + "2.x\/authent-ldap\/dictionaries\/pt_br.dict.authent-ldap.php", + "2.x\/authent-ldap\/dictionaries\/it.dict.authent-ldap.php", + "2.x\/authent-ldap\/dictionaries\/tr.dict.authent-ldap.php", + "2.x\/authent-ldap\/dictionaries\/fr.dict.authent-ldap.php", + "2.x\/authent-ldap\/dictionaries\/en_gb.dict.authent-ldap.php", + "2.x\/authent-ldap\/dictionaries\/de.dict.authent-ldap.php", + "2.x\/authent-ldap\/dictionaries\/da.dict.authent-ldap.php", + "2.x\/authent-ldap\/dictionaries\/nl.dict.authent-ldap.php", + "2.x\/authent-ldap\/dictionaries\/hu.dict.authent-ldap.php", + "2.x\/authent-ldap\/dictionaries\/sk.dict.authent-ldap.php", + "2.x\/authent-ldap\/dictionaries\/ja.dict.authent-ldap.php" + ] + }, + "authent-local\/3.3.0": { + "label": "User authentication based on the local DB", + "category": "authentication", + "dependencies": [], + "mandatory": true, + "visible": true, + "datamodel": [ + "model.authent-local.php" + ], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/authent-local\/module.authent-local.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/authent-local", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/authent-local\/module.authent-local.php", + "dictionary": [ + "2.x\/authent-local\/dictionaries\/en_gb.dict.authent-local.php", + "2.x\/authent-local\/dictionaries\/hu.dict.authent-local.php", + "2.x\/authent-local\/dictionaries\/de.dict.authent-local.php", + "2.x\/authent-local\/dictionaries\/ja.dict.authent-local.php", + "2.x\/authent-local\/dictionaries\/fr.dict.authent-local.php", + "2.x\/authent-local\/dictionaries\/es_cr.dict.authent-local.php", + "2.x\/authent-local\/dictionaries\/it.dict.authent-local.php", + "2.x\/authent-local\/dictionaries\/tr.dict.authent-local.php", + "2.x\/authent-local\/dictionaries\/da.dict.authent-local.php", + "2.x\/authent-local\/dictionaries\/sk.dict.authent-local.php", + "2.x\/authent-local\/dictionaries\/pl.dict.authent-local.php", + "2.x\/authent-local\/dictionaries\/ru.dict.authent-local.php", + "2.x\/authent-local\/dictionaries\/nl.dict.authent-local.php", + "2.x\/authent-local\/dictionaries\/zh_cn.dict.authent-local.php", + "2.x\/authent-local\/dictionaries\/cs.dict.authent-local.php", + "2.x\/authent-local\/dictionaries\/en.dict.authent-local.php", + "2.x\/authent-local\/dictionaries\/pt_br.dict.authent-local.php" + ] + }, + "combodo-backoffice-darkmoon-theme\/3.3.0": { + "label": "Backoffice: Darkmoon theme", + "category": "business", + "dependencies": [], + "mandatory": true, + "visible": false, + "datamodel": [], + "webservice": [], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/combodo-backoffice-darkmoon-theme\/module.combodo-backoffice-darkmoon-theme.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/combodo-backoffice-darkmoon-theme", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/combodo-backoffice-darkmoon-theme\/module.combodo-backoffice-darkmoon-theme.php", + "dictionary": [ + "2.x\/combodo-backoffice-darkmoon-theme\/dictionaries\/es_cr.dict.combodo-backoffice-darkmoon-theme.php", + "2.x\/combodo-backoffice-darkmoon-theme\/dictionaries\/tr.dict.combodo-backoffice-darkmoon-theme.php", + "2.x\/combodo-backoffice-darkmoon-theme\/dictionaries\/sk.dict.combodo-backoffice-darkmoon-theme.php", + "2.x\/combodo-backoffice-darkmoon-theme\/dictionaries\/pt_br.dict.combodo-backoffice-darkmoon-theme.php", + "2.x\/combodo-backoffice-darkmoon-theme\/dictionaries\/it.dict.combodo-backoffice-darkmoon-theme.php", + "2.x\/combodo-backoffice-darkmoon-theme\/dictionaries\/en_gb.dict.combodo-backoffice-darkmoon-theme.php", + "2.x\/combodo-backoffice-darkmoon-theme\/dictionaries\/da.dict.combodo-backoffice-darkmoon-theme.php", + "2.x\/combodo-backoffice-darkmoon-theme\/dictionaries\/nl.dict.combodo-backoffice-darkmoon-theme.php", + "2.x\/combodo-backoffice-darkmoon-theme\/dictionaries\/ja.dict.combodo-backoffice-darkmoon-theme.php", + "2.x\/combodo-backoffice-darkmoon-theme\/dictionaries\/hu.dict.combodo-backoffice-darkmoon-theme.php", + "2.x\/combodo-backoffice-darkmoon-theme\/dictionaries\/pl.dict.combodo-backoffice-darkmoon-theme.php", + "2.x\/combodo-backoffice-darkmoon-theme\/dictionaries\/de.dict.combodo-backoffice-darkmoon-theme.php", + "2.x\/combodo-backoffice-darkmoon-theme\/dictionaries\/zh_cn.dict.combodo-backoffice-darkmoon-theme.php", + "2.x\/combodo-backoffice-darkmoon-theme\/dictionaries\/ru.dict.combodo-backoffice-darkmoon-theme.php", + "2.x\/combodo-backoffice-darkmoon-theme\/dictionaries\/fr.dict.combodo-backoffice-darkmoon-theme.php", + "2.x\/combodo-backoffice-darkmoon-theme\/dictionaries\/en.dict.combodo-backoffice-darkmoon-theme.php", + "2.x\/combodo-backoffice-darkmoon-theme\/dictionaries\/cs.dict.combodo-backoffice-darkmoon-theme.php" + ] + }, + "combodo-backoffice-fullmoon-high-contrast-theme\/3.3.0": { + "label": "Backoffice: Fullmoon with high contrast accessibility theme", + "category": "business", + "dependencies": [], + "mandatory": true, + "visible": false, + "datamodel": [], + "webservice": [], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/combodo-backoffice-fullmoon-high-contrast-theme\/module.combodo-backoffice-fullmoon-high-contrast-theme.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/combodo-backoffice-fullmoon-high-contrast-theme", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/combodo-backoffice-fullmoon-high-contrast-theme\/module.combodo-backoffice-fullmoon-high-contrast-theme.php", + "dictionary": [ + "2.x\/combodo-backoffice-fullmoon-high-contrast-theme\/dictionaries\/es_cr.dict.combodo-backoffice-fullmoon-high-contrast-theme.php", + "2.x\/combodo-backoffice-fullmoon-high-contrast-theme\/dictionaries\/en_gb.dict.combodo-backoffice-fullmoon-high-contrast-theme.php", + "2.x\/combodo-backoffice-fullmoon-high-contrast-theme\/dictionaries\/sk.dict.combodo-backoffice-fullmoon-high-contrast-theme.php", + "2.x\/combodo-backoffice-fullmoon-high-contrast-theme\/dictionaries\/tr.dict.combodo-backoffice-fullmoon-high-contrast-theme.php", + "2.x\/combodo-backoffice-fullmoon-high-contrast-theme\/dictionaries\/en.dict.combodo-backoffice-fullmoon-high-contrast-theme.php", + "2.x\/combodo-backoffice-fullmoon-high-contrast-theme\/dictionaries\/pt_br.dict.combodo-backoffice-fullmoon-high-contrast-theme.php", + "2.x\/combodo-backoffice-fullmoon-high-contrast-theme\/dictionaries\/cs.dict.combodo-backoffice-fullmoon-high-contrast-theme.php", + "2.x\/combodo-backoffice-fullmoon-high-contrast-theme\/dictionaries\/fr.dict.combodo-backoffice-fullmoon-high-contrast-theme.php", + "2.x\/combodo-backoffice-fullmoon-high-contrast-theme\/dictionaries\/hu.dict.combodo-backoffice-fullmoon-high-contrast-theme.php", + "2.x\/combodo-backoffice-fullmoon-high-contrast-theme\/dictionaries\/it.dict.combodo-backoffice-fullmoon-high-contrast-theme.php", + "2.x\/combodo-backoffice-fullmoon-high-contrast-theme\/dictionaries\/ru.dict.combodo-backoffice-fullmoon-high-contrast-theme.php", + "2.x\/combodo-backoffice-fullmoon-high-contrast-theme\/dictionaries\/pl.dict.combodo-backoffice-fullmoon-high-contrast-theme.php", + "2.x\/combodo-backoffice-fullmoon-high-contrast-theme\/dictionaries\/da.dict.combodo-backoffice-fullmoon-high-contrast-theme.php", + "2.x\/combodo-backoffice-fullmoon-high-contrast-theme\/dictionaries\/ja.dict.combodo-backoffice-fullmoon-high-contrast-theme.php", + "2.x\/combodo-backoffice-fullmoon-high-contrast-theme\/dictionaries\/zh_cn.dict.combodo-backoffice-fullmoon-high-contrast-theme.php", + "2.x\/combodo-backoffice-fullmoon-high-contrast-theme\/dictionaries\/nl.dict.combodo-backoffice-fullmoon-high-contrast-theme.php", + "2.x\/combodo-backoffice-fullmoon-high-contrast-theme\/dictionaries\/de.dict.combodo-backoffice-fullmoon-high-contrast-theme.php" + ] + }, + "combodo-backoffice-fullmoon-protanopia-deuteranopia-theme\/3.3.0": { + "label": "Backoffice: Fullmoon with protonopia & deuteranopia accessibility theme", + "category": "business", + "dependencies": [], + "mandatory": true, + "visible": false, + "datamodel": [], + "webservice": [], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/combodo-backoffice-fullmoon-protanopia-deuteranopia-theme\/module.combodo-backoffice-fullmoon-protanopia-deuteranopia-theme.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/combodo-backoffice-fullmoon-protanopia-deuteranopia-theme", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/combodo-backoffice-fullmoon-protanopia-deuteranopia-theme\/module.combodo-backoffice-fullmoon-protanopia-deuteranopia-theme.php", + "dictionary": [ + "2.x\/combodo-backoffice-fullmoon-protanopia-deuteranopia-theme\/dictionaries\/pl.dict.combodo-backoffice-fullmoon-protanopia-deuteranopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-protanopia-deuteranopia-theme\/dictionaries\/ja.dict.combodo-backoffice-fullmoon-protanopia-deuteranopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-protanopia-deuteranopia-theme\/dictionaries\/da.dict.combodo-backoffice-fullmoon-protanopia-deuteranopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-protanopia-deuteranopia-theme\/dictionaries\/de.dict.combodo-backoffice-fullmoon-protanopia-deuteranopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-protanopia-deuteranopia-theme\/dictionaries\/cs.dict.combodo-backoffice-fullmoon-protanopia-deuteranopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-protanopia-deuteranopia-theme\/dictionaries\/es_cr.dict.combodo-backoffice-fullmoon-protanopia-deuteranopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-protanopia-deuteranopia-theme\/dictionaries\/zh_cn.dict.combodo-backoffice-fullmoon-protanopia-deuteranopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-protanopia-deuteranopia-theme\/dictionaries\/sk.dict.combodo-backoffice-fullmoon-protanopia-deuteranopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-protanopia-deuteranopia-theme\/dictionaries\/nl.dict.combodo-backoffice-fullmoon-protanopia-deuteranopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-protanopia-deuteranopia-theme\/dictionaries\/tr.dict.combodo-backoffice-fullmoon-protanopia-deuteranopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-protanopia-deuteranopia-theme\/dictionaries\/pt_br.dict.combodo-backoffice-fullmoon-protanopia-deuteranopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-protanopia-deuteranopia-theme\/dictionaries\/it.dict.combodo-backoffice-fullmoon-protanopia-deuteranopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-protanopia-deuteranopia-theme\/dictionaries\/fr.dict.combodo-backoffice-fullmoon-protanopia-deuteranopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-protanopia-deuteranopia-theme\/dictionaries\/ru.dict.combodo-backoffice-fullmoon-protanopia-deuteranopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-protanopia-deuteranopia-theme\/dictionaries\/en_gb.dict.combodo-backoffice-fullmoon-protanopia-deuteranopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-protanopia-deuteranopia-theme\/dictionaries\/hu.dict.combodo-backoffice-fullmoon-protanopia-deuteranopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-protanopia-deuteranopia-theme\/dictionaries\/en.dict.combodo-backoffice-fullmoon-protanopia-deuteranopia-theme.php" + ] + }, + "combodo-backoffice-fullmoon-tritanopia-theme\/3.3.0": { + "label": "Backoffice: Fullmoon with tritanopia accessibility theme", + "category": "business", + "dependencies": [], + "mandatory": true, + "visible": false, + "datamodel": [], + "webservice": [], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/combodo-backoffice-fullmoon-tritanopia-theme\/module.combodo-backoffice-fullmoon-tritanopia-theme.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/combodo-backoffice-fullmoon-tritanopia-theme", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/combodo-backoffice-fullmoon-tritanopia-theme\/module.combodo-backoffice-fullmoon-tritanopia-theme.php", + "dictionary": [ + "2.x\/combodo-backoffice-fullmoon-tritanopia-theme\/dictionaries\/en.dict.combodo-backoffice-fullmoon-tritanopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-tritanopia-theme\/dictionaries\/ru.dict.combodo-backoffice-fullmoon-tritanopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-tritanopia-theme\/dictionaries\/da.dict.combodo-backoffice-fullmoon-tritanopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-tritanopia-theme\/dictionaries\/fr.dict.combodo-backoffice-fullmoon-tritanopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-tritanopia-theme\/dictionaries\/pl.dict.combodo-backoffice-fullmoon-tritanopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-tritanopia-theme\/dictionaries\/it.dict.combodo-backoffice-fullmoon-tritanopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-tritanopia-theme\/dictionaries\/ja.dict.combodo-backoffice-fullmoon-tritanopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-tritanopia-theme\/dictionaries\/hu.dict.combodo-backoffice-fullmoon-tritanopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-tritanopia-theme\/dictionaries\/tr.dict.combodo-backoffice-fullmoon-tritanopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-tritanopia-theme\/dictionaries\/en_gb.dict.combodo-backoffice-fullmoon-tritanopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-tritanopia-theme\/dictionaries\/de.dict.combodo-backoffice-fullmoon-tritanopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-tritanopia-theme\/dictionaries\/nl.dict.combodo-backoffice-fullmoon-tritanopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-tritanopia-theme\/dictionaries\/zh_cn.dict.combodo-backoffice-fullmoon-tritanopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-tritanopia-theme\/dictionaries\/sk.dict.combodo-backoffice-fullmoon-tritanopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-tritanopia-theme\/dictionaries\/pt_br.dict.combodo-backoffice-fullmoon-tritanopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-tritanopia-theme\/dictionaries\/cs.dict.combodo-backoffice-fullmoon-tritanopia-theme.php", + "2.x\/combodo-backoffice-fullmoon-tritanopia-theme\/dictionaries\/es_cr.dict.combodo-backoffice-fullmoon-tritanopia-theme.php" + ] + }, + "itop-attachments\/3.3.0": { + "label": "Tickets Attachments", + "category": "business", + "dependencies": [], + "mandatory": false, + "visible": true, + "installer": "AttachmentInstaller", + "datamodel": [ + "vendor\/autoload.php", + "main.itop-attachments.php", + "src\/Trigger\/TriggerOnAttachmentCreate.php", + "src\/Trigger\/TriggerOnAttachmentDelete.php", + "src\/Trigger\/TriggerOnAttachmentDownload.php", + "renderers.itop-attachments.php" + ], + "webservice": [], + "dictionary": [ + "2.x\/itop-attachments\/dictionaries\/cs.dict.itop-attachments.php", + "2.x\/itop-attachments\/dictionaries\/ja.dict.itop-attachments.php", + "2.x\/itop-attachments\/dictionaries\/es_cr.dict.itop-attachments.php", + "2.x\/itop-attachments\/dictionaries\/ru.dict.itop-attachments.php", + "2.x\/itop-attachments\/dictionaries\/it.dict.itop-attachments.php", + "2.x\/itop-attachments\/dictionaries\/zh_cn.dict.itop-attachments.php", + "2.x\/itop-attachments\/dictionaries\/hu.dict.itop-attachments.php", + "2.x\/itop-attachments\/dictionaries\/da.dict.itop-attachments.php", + "2.x\/itop-attachments\/dictionaries\/en.dict.itop-attachments.php", + "2.x\/itop-attachments\/dictionaries\/sk.dict.itop-attachments.php", + "2.x\/itop-attachments\/dictionaries\/pt_br.dict.itop-attachments.php", + "2.x\/itop-attachments\/dictionaries\/fr.dict.itop-attachments.php", + "2.x\/itop-attachments\/dictionaries\/de.dict.itop-attachments.php", + "2.x\/itop-attachments\/dictionaries\/en_gb.dict.itop-attachments.php", + "2.x\/itop-attachments\/dictionaries\/pl.dict.itop-attachments.php", + "2.x\/itop-attachments\/dictionaries\/tr.dict.itop-attachments.php", + "2.x\/itop-attachments\/dictionaries\/nl.dict.itop-attachments.php" + ], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": { + "allowed_classes": [ + "Ticket" + ], + "position": "relations", + "preview_max_width": 290, + "icon_preview_max_size": 500000 + }, + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-attachments\/module.itop-attachments.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-attachments", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-attachments\/module.itop-attachments.php" + }, + "itop-backup\/3.3.0": { + "label": "Backup utilities", + "category": "Application management", + "dependencies": [], + "mandatory": true, + "visible": false, + "datamodel": [ + "main.itop-backup.php" + ], + "webservice": [], + "dictionary": [ + "en.dict.itop-backup.php", + "fr.dict.itop-backup.php", + "2.x\/itop-backup\/dictionaries\/cs.dict.itop-backup.php", + "2.x\/itop-backup\/dictionaries\/es_cr.dict.itop-backup.php", + "2.x\/itop-backup\/dictionaries\/pl.dict.itop-backup.php", + "2.x\/itop-backup\/dictionaries\/fr.dict.itop-backup.php", + "2.x\/itop-backup\/dictionaries\/de.dict.itop-backup.php", + "2.x\/itop-backup\/dictionaries\/ja.dict.itop-backup.php", + "2.x\/itop-backup\/dictionaries\/en.dict.itop-backup.php", + "2.x\/itop-backup\/dictionaries\/hu.dict.itop-backup.php", + "2.x\/itop-backup\/dictionaries\/nl.dict.itop-backup.php", + "2.x\/itop-backup\/dictionaries\/it.dict.itop-backup.php", + "2.x\/itop-backup\/dictionaries\/sk.dict.itop-backup.php", + "2.x\/itop-backup\/dictionaries\/ru.dict.itop-backup.php", + "2.x\/itop-backup\/dictionaries\/tr.dict.itop-backup.php", + "2.x\/itop-backup\/dictionaries\/pt_br.dict.itop-backup.php", + "2.x\/itop-backup\/dictionaries\/en_gb.dict.itop-backup.php", + "2.x\/itop-backup\/dictionaries\/da.dict.itop-backup.php", + "2.x\/itop-backup\/dictionaries\/zh_cn.dict.itop-backup.php" + ], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": { + "mysql_bindir": "", + "week_days": "monday, tuesday, wednesday, thursday, friday", + "time": "23:30", + "retention_count": 5, + "enabled": true, + "itop_backup_incident": "" + }, + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-backup\/module.itop-backup.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-backup", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-backup\/module.itop-backup.php" + }, + "itop-config\/3.3.0": { + "label": "Configuration editor", + "category": "Application management", + "dependencies": [], + "mandatory": true, + "visible": false, + "datamodel": [ + "src\/Validator\/ConfigNodesVisitor.php", + "src\/Validator\/iTopConfigAstValidator.php", + "src\/Validator\/iTopConfigSyntaxValidator.php", + "src\/Validator\/iTopConfigValidator.php", + "src\/Controller\/ConfigEditorController.php" + ], + "webservice": [], + "dictionary": [ + "en.dict.itop-config.php", + "fr.dict.itop-config.php", + "2.x\/itop-config\/dictionaries\/pl.dict.itop-config.php", + "2.x\/itop-config\/dictionaries\/ru.dict.itop-config.php", + "2.x\/itop-config\/dictionaries\/en.dict.itop-config.php", + "2.x\/itop-config\/dictionaries\/sk.dict.itop-config.php", + "2.x\/itop-config\/dictionaries\/en_gb.dict.itop-config.php", + "2.x\/itop-config\/dictionaries\/cs.dict.itop-config.php", + "2.x\/itop-config\/dictionaries\/de.dict.itop-config.php", + "2.x\/itop-config\/dictionaries\/zh_cn.dict.itop-config.php", + "2.x\/itop-config\/dictionaries\/nl.dict.itop-config.php", + "2.x\/itop-config\/dictionaries\/es_cr.dict.itop-config.php", + "2.x\/itop-config\/dictionaries\/da.dict.itop-config.php", + "2.x\/itop-config\/dictionaries\/ja.dict.itop-config.php", + "2.x\/itop-config\/dictionaries\/pt_br.dict.itop-config.php", + "2.x\/itop-config\/dictionaries\/tr.dict.itop-config.php", + "2.x\/itop-config\/dictionaries\/hu.dict.itop-config.php", + "2.x\/itop-config\/dictionaries\/it.dict.itop-config.php", + "2.x\/itop-config\/dictionaries\/fr.dict.itop-config.php" + ], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-config\/module.itop-config.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-config", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-config\/module.itop-config.php" + }, + "itop-files-information\/3.3.0": { + "label": "iTop files information", + "category": "business", + "dependencies": [], + "mandatory": false, + "visible": false, + "datamodel": [ + "src\/Service\/FilesInformation.php", + "src\/Service\/FilesInformationException.php", + "src\/Service\/FilesInformationUtils.php", + "src\/Service\/FilesIntegrity.php" + ], + "webservice": [], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-files-information\/module.itop-files-information.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-files-information", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-files-information\/module.itop-files-information.php", + "dictionary": [ + "2.x\/itop-files-information\/dictionaries\/sk.dict.itop-files-information.php", + "2.x\/itop-files-information\/dictionaries\/cs.dict.itop-files-information.php", + "2.x\/itop-files-information\/dictionaries\/ja.dict.itop-files-information.php", + "2.x\/itop-files-information\/dictionaries\/hu.dict.itop-files-information.php", + "2.x\/itop-files-information\/dictionaries\/en_gb.dict.itop-files-information.php", + "2.x\/itop-files-information\/dictionaries\/fr.dict.itop-files-information.php", + "2.x\/itop-files-information\/dictionaries\/pt_br.dict.itop-files-information.php", + "2.x\/itop-files-information\/dictionaries\/es_cr.dict.itop-files-information.php", + "2.x\/itop-files-information\/dictionaries\/tr.dict.itop-files-information.php", + "2.x\/itop-files-information\/dictionaries\/pl.dict.itop-files-information.php", + "2.x\/itop-files-information\/dictionaries\/zh_cn.dict.itop-files-information.php", + "2.x\/itop-files-information\/dictionaries\/en.dict.itop-files-information.php", + "2.x\/itop-files-information\/dictionaries\/da.dict.itop-files-information.php", + "2.x\/itop-files-information\/dictionaries\/de.dict.itop-files-information.php", + "2.x\/itop-files-information\/dictionaries\/nl.dict.itop-files-information.php", + "2.x\/itop-files-information\/dictionaries\/it.dict.itop-files-information.php", + "2.x\/itop-files-information\/dictionaries\/ru.dict.itop-files-information.php" + ] + }, + "itop-portal-base\/3.3.0": { + "label": "Portal Development Library", + "category": "Portal", + "dependencies": [], + "mandatory": true, + "visible": false, + "datamodel": [ + "portal\/vendor\/autoload.php" + ], + "webservice": [], + "dictionary": [ + "2.x\/itop-portal-base\/dictionaries\/en_gb.dict.itop-portal-base.php", + "2.x\/itop-portal-base\/dictionaries\/hu.dict.itop-portal-base.php", + "2.x\/itop-portal-base\/dictionaries\/ja.dict.itop-portal-base.php", + "2.x\/itop-portal-base\/dictionaries\/cs.dict.itop-portal-base.php", + "2.x\/itop-portal-base\/dictionaries\/zh_cn.dict.itop-portal-base.php", + "2.x\/itop-portal-base\/dictionaries\/tr.dict.itop-portal-base.php", + "2.x\/itop-portal-base\/dictionaries\/pt_br.dict.itop-portal-base.php", + "2.x\/itop-portal-base\/dictionaries\/nl.dict.itop-portal-base.php", + "2.x\/itop-portal-base\/dictionaries\/it.dict.itop-portal-base.php", + "2.x\/itop-portal-base\/dictionaries\/es_cr.dict.itop-portal-base.php", + "2.x\/itop-portal-base\/dictionaries\/fr.dict.itop-portal-base.php", + "2.x\/itop-portal-base\/dictionaries\/pl.dict.itop-portal-base.php", + "2.x\/itop-portal-base\/dictionaries\/ru.dict.itop-portal-base.php", + "2.x\/itop-portal-base\/dictionaries\/de.dict.itop-portal-base.php", + "2.x\/itop-portal-base\/dictionaries\/da.dict.itop-portal-base.php", + "2.x\/itop-portal-base\/dictionaries\/en.dict.itop-portal-base.php", + "2.x\/itop-portal-base\/dictionaries\/sk.dict.itop-portal-base.php" + ], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-portal-base\/module.itop-portal-base.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-portal-base", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-portal-base\/module.itop-portal-base.php" + }, + "itop-portal\/3.3.0": { + "label": "Enhanced Customer Portal", + "category": "Portal", + "dependencies": [ + "itop-portal-base\/2.7.0" + ], + "mandatory": false, + "visible": true, + "datamodel": [ + "main.itop-portal.php" + ], + "webservice": [], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-portal\/module.itop-portal.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-portal", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-portal\/module.itop-portal.php", + "dictionary": [ + "2.x\/itop-portal\/dictionaries\/de.dict.itop-portal.php", + "2.x\/itop-portal\/dictionaries\/ru.dict.itop-portal.php", + "2.x\/itop-portal\/dictionaries\/pl.dict.itop-portal.php", + "2.x\/itop-portal\/dictionaries\/ja.dict.itop-portal.php", + "2.x\/itop-portal\/dictionaries\/cs.dict.itop-portal.php", + "2.x\/itop-portal\/dictionaries\/zh_cn.dict.itop-portal.php", + "2.x\/itop-portal\/dictionaries\/en_gb.dict.itop-portal.php", + "2.x\/itop-portal\/dictionaries\/da.dict.itop-portal.php", + "2.x\/itop-portal\/dictionaries\/hu.dict.itop-portal.php", + "2.x\/itop-portal\/dictionaries\/it.dict.itop-portal.php", + "2.x\/itop-portal\/dictionaries\/tr.dict.itop-portal.php", + "2.x\/itop-portal\/dictionaries\/es_cr.dict.itop-portal.php", + "2.x\/itop-portal\/dictionaries\/sk.dict.itop-portal.php", + "2.x\/itop-portal\/dictionaries\/fr.dict.itop-portal.php", + "2.x\/itop-portal\/dictionaries\/nl.dict.itop-portal.php", + "2.x\/itop-portal\/dictionaries\/pt_br.dict.itop-portal.php", + "2.x\/itop-portal\/dictionaries\/en.dict.itop-portal.php" + ] + }, + "itop-profiles-itil\/3.3.0": { + "label": "Create standard ITIL profiles", + "category": "create_profiles", + "dependencies": [], + "mandatory": true, + "visible": false, + "datamodel": [], + "webservice": [], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-profiles-itil\/module.itop-profiles-itil.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-profiles-itil", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-profiles-itil\/module.itop-profiles-itil.php" + }, + "itop-sla-computation\/3.3.0": { + "label": "SLA Computation", + "category": "sla", + "dependencies": [], + "mandatory": true, + "visible": false, + "datamodel": [ + "main.itop-sla-computation.php" + ], + "webservice": [], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-sla-computation\/module.itop-sla-computation.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-sla-computation", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-sla-computation\/module.itop-sla-computation.php" + }, + "itop-structure\/3.3.0": { + "label": "Core iTop Structure", + "category": "business", + "dependencies": [], + "mandatory": true, + "visible": false, + "installer": "StructureInstaller", + "datamodel": [ + "main.itop-structure.php" + ], + "data.struct": [], + "data.sample": [ + "data.sample.organizations.xml", + "data.sample.locations.xml", + "data.sample.persons.xml", + "data.sample.teams.xml", + "data.sample.contactteam.xml", + "data.sample.contacttype.xml" + ], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-structure\/module.itop-structure.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-structure", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-structure\/module.itop-structure.php", + "dictionary": [ + "2.x\/itop-structure\/dictionaries\/sk.dict.itop-structure.php", + "2.x\/itop-structure\/dictionaries\/pl.dict.itop-structure.php", + "2.x\/itop-structure\/dictionaries\/fr.dict.itop-structure.php", + "2.x\/itop-structure\/dictionaries\/pt_br.dict.itop-structure.php", + "2.x\/itop-structure\/dictionaries\/da.dict.itop-structure.php", + "2.x\/itop-structure\/dictionaries\/ja.dict.itop-structure.php", + "2.x\/itop-structure\/dictionaries\/ru.dict.itop-structure.php", + "2.x\/itop-structure\/dictionaries\/tr.dict.itop-structure.php", + "2.x\/itop-structure\/dictionaries\/hu.dict.itop-structure.php", + "2.x\/itop-structure\/dictionaries\/nl.dict.itop-structure.php", + "2.x\/itop-structure\/dictionaries\/en_gb.dict.itop-structure.php", + "2.x\/itop-structure\/dictionaries\/en.dict.itop-structure.php", + "2.x\/itop-structure\/dictionaries\/it.dict.itop-structure.php", + "2.x\/itop-structure\/dictionaries\/de.dict.itop-structure.php", + "2.x\/itop-structure\/dictionaries\/cs.dict.itop-structure.php", + "2.x\/itop-structure\/dictionaries\/es_cr.dict.itop-structure.php", + "2.x\/itop-structure\/dictionaries\/zh_cn.dict.itop-structure.php" + ] + }, + "itop-themes-compat\/3.3.0": { + "label": "Light grey and Test red themes compatibility", + "category": "business", + "dependencies": [ + "itop-structure\/3.1.0" + ], + "mandatory": false, + "visible": true, + "datamodel": [], + "webservice": [], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-themes-compat\/module.itop-themes-compat.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-themes-compat", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-themes-compat\/module.itop-themes-compat.php", + "dictionary": [ + "2.x\/itop-themes-compat\/dictionaries\/it.dict.itop-themes-compat.php", + "2.x\/itop-themes-compat\/dictionaries\/tr.dict.itop-themes-compat.php", + "2.x\/itop-themes-compat\/dictionaries\/ru.dict.itop-themes-compat.php", + "2.x\/itop-themes-compat\/dictionaries\/pt_br.dict.itop-themes-compat.php", + "2.x\/itop-themes-compat\/dictionaries\/da.dict.itop-themes-compat.php", + "2.x\/itop-themes-compat\/dictionaries\/fr.dict.itop-themes-compat.php", + "2.x\/itop-themes-compat\/dictionaries\/ja.dict.itop-themes-compat.php", + "2.x\/itop-themes-compat\/dictionaries\/hu.dict.itop-themes-compat.php", + "2.x\/itop-themes-compat\/dictionaries\/en_gb.dict.itop-themes-compat.php", + "2.x\/itop-themes-compat\/dictionaries\/cs.dict.itop-themes-compat.php", + "2.x\/itop-themes-compat\/dictionaries\/nl.dict.itop-themes-compat.php", + "2.x\/itop-themes-compat\/dictionaries\/sk.dict.itop-themes-compat.php", + "2.x\/itop-themes-compat\/dictionaries\/de.dict.itop-themes-compat.php", + "2.x\/itop-themes-compat\/dictionaries\/es_cr.dict.itop-themes-compat.php", + "2.x\/itop-themes-compat\/dictionaries\/zh_cn.dict.itop-themes-compat.php", + "2.x\/itop-themes-compat\/dictionaries\/pl.dict.itop-themes-compat.php", + "2.x\/itop-themes-compat\/dictionaries\/en.dict.itop-themes-compat.php" + ] + }, + "itop-tickets\/3.3.0": { + "label": "Tickets Management", + "category": "business", + "dependencies": [ + "itop-structure\/2.7.1" + ], + "mandatory": false, + "visible": true, + "installer": "TicketsInstaller", + "datamodel": [ + "main.itop-tickets.php" + ], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-tickets\/module.itop-tickets.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-tickets", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-tickets\/module.itop-tickets.php", + "dictionary": [ + "2.x\/itop-tickets\/dictionaries\/cs.dict.itop-tickets.php", + "2.x\/itop-tickets\/dictionaries\/da.dict.itop-tickets.php", + "2.x\/itop-tickets\/dictionaries\/es_cr.dict.itop-tickets.php", + "2.x\/itop-tickets\/dictionaries\/tr.dict.itop-tickets.php", + "2.x\/itop-tickets\/dictionaries\/nl.dict.itop-tickets.php", + "2.x\/itop-tickets\/dictionaries\/pl.dict.itop-tickets.php", + "2.x\/itop-tickets\/dictionaries\/it.dict.itop-tickets.php", + "2.x\/itop-tickets\/dictionaries\/en.dict.itop-tickets.php", + "2.x\/itop-tickets\/dictionaries\/pt_br.dict.itop-tickets.php", + "2.x\/itop-tickets\/dictionaries\/fr.dict.itop-tickets.php", + "2.x\/itop-tickets\/dictionaries\/sk.dict.itop-tickets.php", + "2.x\/itop-tickets\/dictionaries\/ja.dict.itop-tickets.php", + "2.x\/itop-tickets\/dictionaries\/ru.dict.itop-tickets.php", + "2.x\/itop-tickets\/dictionaries\/hu.dict.itop-tickets.php", + "2.x\/itop-tickets\/dictionaries\/de.dict.itop-tickets.php", + "2.x\/itop-tickets\/dictionaries\/en_gb.dict.itop-tickets.php", + "2.x\/itop-tickets\/dictionaries\/zh_cn.dict.itop-tickets.php" + ] + }, + "itop-welcome-itil\/3.3.0": { + "label": "ITIL skin", + "category": "skin", + "dependencies": [], + "mandatory": true, + "visible": false, + "datamodel": [], + "webservice": [], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-welcome-itil\/module.itop-welcome-itil.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-welcome-itil", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-welcome-itil\/module.itop-welcome-itil.php", + "dictionary": [ + "2.x\/itop-welcome-itil\/dictionaries\/da.dict.itop-welcome-itil.php", + "2.x\/itop-welcome-itil\/dictionaries\/es_cr.dict.itop-welcome-itil.php", + "2.x\/itop-welcome-itil\/dictionaries\/sk.dict.itop-welcome-itil.php", + "2.x\/itop-welcome-itil\/dictionaries\/nl.dict.itop-welcome-itil.php", + "2.x\/itop-welcome-itil\/dictionaries\/en.dict.itop-welcome-itil.php", + "2.x\/itop-welcome-itil\/dictionaries\/fr.dict.itop-welcome-itil.php", + "2.x\/itop-welcome-itil\/dictionaries\/ru.dict.itop-welcome-itil.php", + "2.x\/itop-welcome-itil\/dictionaries\/ja.dict.itop-welcome-itil.php", + "2.x\/itop-welcome-itil\/dictionaries\/de.dict.itop-welcome-itil.php", + "2.x\/itop-welcome-itil\/dictionaries\/it.dict.itop-welcome-itil.php", + "2.x\/itop-welcome-itil\/dictionaries\/pl.dict.itop-welcome-itil.php", + "2.x\/itop-welcome-itil\/dictionaries\/tr.dict.itop-welcome-itil.php", + "2.x\/itop-welcome-itil\/dictionaries\/en_gb.dict.itop-welcome-itil.php", + "2.x\/itop-welcome-itil\/dictionaries\/hu.dict.itop-welcome-itil.php", + "2.x\/itop-welcome-itil\/dictionaries\/zh_cn.dict.itop-welcome-itil.php", + "2.x\/itop-welcome-itil\/dictionaries\/cs.dict.itop-welcome-itil.php", + "2.x\/itop-welcome-itil\/dictionaries\/pt_br.dict.itop-welcome-itil.php" + ] + }, + "combodo-db-tools\/3.3.0": { + "label": "Database maintenance tools", + "category": "business", + "dependencies": [ + "itop-structure\/3.0.0" + ], + "mandatory": false, + "visible": true, + "datamodel": [ + "src\/Service\/DBToolsUtils.php", + "src\/Service\/DBAnalyzerUtils.php" + ], + "webservice": [], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/combodo-db-tools\/module.combodo-db-tools.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/combodo-db-tools", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/combodo-db-tools\/module.combodo-db-tools.php", + "dictionary": [ + "2.x\/combodo-db-tools\/dictionaries\/en.dict.combodo-db-tools.php", + "2.x\/combodo-db-tools\/dictionaries\/pl.dict.combodo-db-tools.php", + "2.x\/combodo-db-tools\/dictionaries\/pt_br.dict.combodo-db-tools.php", + "2.x\/combodo-db-tools\/dictionaries\/zh_cn.dict.combodo-db-tools.php", + "2.x\/combodo-db-tools\/dictionaries\/en_gb.dict.combodo-db-tools.php", + "2.x\/combodo-db-tools\/dictionaries\/nl.dict.combodo-db-tools.php", + "2.x\/combodo-db-tools\/dictionaries\/ru.dict.combodo-db-tools.php", + "2.x\/combodo-db-tools\/dictionaries\/es_cr.dict.combodo-db-tools.php", + "2.x\/combodo-db-tools\/dictionaries\/tr.dict.combodo-db-tools.php", + "2.x\/combodo-db-tools\/dictionaries\/da.dict.combodo-db-tools.php", + "2.x\/combodo-db-tools\/dictionaries\/ja.dict.combodo-db-tools.php", + "2.x\/combodo-db-tools\/dictionaries\/de.dict.combodo-db-tools.php", + "2.x\/combodo-db-tools\/dictionaries\/hu.dict.combodo-db-tools.php", + "2.x\/combodo-db-tools\/dictionaries\/fr.dict.combodo-db-tools.php", + "2.x\/combodo-db-tools\/dictionaries\/it.dict.combodo-db-tools.php", + "2.x\/combodo-db-tools\/dictionaries\/sk.dict.combodo-db-tools.php", + "2.x\/combodo-db-tools\/dictionaries\/cs.dict.combodo-db-tools.php" + ] + }, + "itop-config-mgmt\/3.3.0": { + "label": "Configuration Management (CMDB)", + "category": "business", + "dependencies": [ + "itop-structure\/2.7.1" + ], + "mandatory": false, + "visible": true, + "installer": "ConfigMgmtInstaller", + "datamodel": [ + "model.itop-config-mgmt.php", + "main.itop-config-mgmt.php" + ], + "data.struct": [ + "data\/en_us.data.itop-brand.xml", + "data\/en_us.data.itop-osfamily.xml", + "data\/en_us.data.itop-osversion.xml" + ], + "data.sample": [ + "data.sample.model.xml", + "data.sample.networkdevicetype.xml", + "data.sample.servers.xml", + "data.sample.nw-devices.xml", + "data.sample.software.xml", + "data.sample.dbserver.xml", + "data.sample.dbschema.xml", + "data.sample.webserver.xml", + "data.sample.webapp.xml", + "data.sample.applications.xml", + "data.sample.applicationsolutionci.xml" + ], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-config-mgmt\/module.itop-config-mgmt.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-config-mgmt", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-config-mgmt\/module.itop-config-mgmt.php", + "dictionary": [ + "2.x\/itop-config-mgmt\/dictionaries\/ru.dict.itop-config-mgmt.php", + "2.x\/itop-config-mgmt\/dictionaries\/tr.dict.itop-config-mgmt.php", + "2.x\/itop-config-mgmt\/dictionaries\/it.dict.itop-config-mgmt.php", + "2.x\/itop-config-mgmt\/dictionaries\/pl.dict.itop-config-mgmt.php", + "2.x\/itop-config-mgmt\/dictionaries\/de.dict.itop-config-mgmt.php", + "2.x\/itop-config-mgmt\/dictionaries\/en_gb.dict.itop-config-mgmt.php", + "2.x\/itop-config-mgmt\/dictionaries\/fr.dict.itop-config-mgmt.php", + "2.x\/itop-config-mgmt\/dictionaries\/hu.dict.itop-config-mgmt.php", + "2.x\/itop-config-mgmt\/dictionaries\/nl.dict.itop-config-mgmt.php", + "2.x\/itop-config-mgmt\/dictionaries\/en.dict.itop-config-mgmt.php", + "2.x\/itop-config-mgmt\/dictionaries\/cs.dict.itop-config-mgmt.php", + "2.x\/itop-config-mgmt\/dictionaries\/ja.dict.itop-config-mgmt.php", + "2.x\/itop-config-mgmt\/dictionaries\/sk.dict.itop-config-mgmt.php", + "2.x\/itop-config-mgmt\/dictionaries\/zh_cn.dict.itop-config-mgmt.php", + "2.x\/itop-config-mgmt\/dictionaries\/da.dict.itop-config-mgmt.php", + "2.x\/itop-config-mgmt\/dictionaries\/pt_br.dict.itop-config-mgmt.php", + "2.x\/itop-config-mgmt\/dictionaries\/es_cr.dict.itop-config-mgmt.php" + ] + }, + "itop-core-update\/3.3.0": { + "label": "iTop Core Update", + "category": "business", + "dependencies": [ + "itop-files-information\/2.7.0", + "combodo-db-tools\/2.7.0" + ], + "mandatory": false, + "visible": true, + "datamodel": [ + "src\/Service\/RunTimeEnvironmentCoreUpdater.php", + "src\/Service\/CoreUpdater.php", + "src\/Controller\/UpdateController.php", + "src\/Controller\/AjaxController.php" + ], + "webservice": [], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-core-update\/module.itop-core-update.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-core-update", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-core-update\/module.itop-core-update.php", + "dictionary": [ + "2.x\/itop-core-update\/dictionaries\/ru.dict.itop-core-update.php", + "2.x\/itop-core-update\/dictionaries\/de.dict.itop-core-update.php", + "2.x\/itop-core-update\/dictionaries\/hu.dict.itop-core-update.php", + "2.x\/itop-core-update\/dictionaries\/es_cr.dict.itop-core-update.php", + "2.x\/itop-core-update\/dictionaries\/cs.dict.itop-core-update.php", + "2.x\/itop-core-update\/dictionaries\/sk.dict.itop-core-update.php", + "2.x\/itop-core-update\/dictionaries\/pl.dict.itop-core-update.php", + "2.x\/itop-core-update\/dictionaries\/zh_cn.dict.itop-core-update.php", + "2.x\/itop-core-update\/dictionaries\/fr.dict.itop-core-update.php", + "2.x\/itop-core-update\/dictionaries\/da.dict.itop-core-update.php", + "2.x\/itop-core-update\/dictionaries\/en_gb.dict.itop-core-update.php", + "2.x\/itop-core-update\/dictionaries\/it.dict.itop-core-update.php", + "2.x\/itop-core-update\/dictionaries\/pt_br.dict.itop-core-update.php", + "2.x\/itop-core-update\/dictionaries\/en.dict.itop-core-update.php", + "2.x\/itop-core-update\/dictionaries\/nl.dict.itop-core-update.php", + "2.x\/itop-core-update\/dictionaries\/tr.dict.itop-core-update.php", + "2.x\/itop-core-update\/dictionaries\/ja.dict.itop-core-update.php" + ] + }, + "itop-datacenter-mgmt\/3.3.0": { + "label": "Datacenter Management", + "category": "business", + "dependencies": [ + "itop-config-mgmt\/2.2.0" + ], + "mandatory": false, + "visible": true, + "datamodel": [], + "webservice": [], + "data.struct": [], + "data.sample": [ + "data.sample.racks.xml" + ], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-datacenter-mgmt\/module.itop-datacenter-mgmt.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-datacenter-mgmt", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-datacenter-mgmt\/module.itop-datacenter-mgmt.php", + "dictionary": [ + "2.x\/itop-datacenter-mgmt\/dictionaries\/tr.dict.itop-datacenter-mgmt.php", + "2.x\/itop-datacenter-mgmt\/dictionaries\/ja.dict.itop-datacenter-mgmt.php", + "2.x\/itop-datacenter-mgmt\/dictionaries\/sk.dict.itop-datacenter-mgmt.php", + "2.x\/itop-datacenter-mgmt\/dictionaries\/da.dict.itop-datacenter-mgmt.php", + "2.x\/itop-datacenter-mgmt\/dictionaries\/es_cr.dict.itop-datacenter-mgmt.php", + "2.x\/itop-datacenter-mgmt\/dictionaries\/pl.dict.itop-datacenter-mgmt.php", + "2.x\/itop-datacenter-mgmt\/dictionaries\/ru.dict.itop-datacenter-mgmt.php", + "2.x\/itop-datacenter-mgmt\/dictionaries\/en.dict.itop-datacenter-mgmt.php", + "2.x\/itop-datacenter-mgmt\/dictionaries\/it.dict.itop-datacenter-mgmt.php", + "2.x\/itop-datacenter-mgmt\/dictionaries\/zh_cn.dict.itop-datacenter-mgmt.php", + "2.x\/itop-datacenter-mgmt\/dictionaries\/de.dict.itop-datacenter-mgmt.php", + "2.x\/itop-datacenter-mgmt\/dictionaries\/hu.dict.itop-datacenter-mgmt.php", + "2.x\/itop-datacenter-mgmt\/dictionaries\/cs.dict.itop-datacenter-mgmt.php", + "2.x\/itop-datacenter-mgmt\/dictionaries\/en_gb.dict.itop-datacenter-mgmt.php", + "2.x\/itop-datacenter-mgmt\/dictionaries\/fr.dict.itop-datacenter-mgmt.php", + "2.x\/itop-datacenter-mgmt\/dictionaries\/pt_br.dict.itop-datacenter-mgmt.php", + "2.x\/itop-datacenter-mgmt\/dictionaries\/nl.dict.itop-datacenter-mgmt.php" + ] + }, + "itop-endusers-devices\/3.3.0": { + "label": "End-user Devices Management", + "category": "business", + "dependencies": [ + "itop-config-mgmt\/2.2.0" + ], + "mandatory": false, + "visible": true, + "installer": "EndUserMgmtInstaller", + "datamodel": [], + "webservice": [], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-endusers-devices\/module.itop-endusers-devices.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-endusers-devices", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-endusers-devices\/module.itop-endusers-devices.php", + "dictionary": [ + "2.x\/itop-endusers-devices\/dictionaries\/pl.dict.itop-endusers-devices.php", + "2.x\/itop-endusers-devices\/dictionaries\/cs.dict.itop-endusers-devices.php", + "2.x\/itop-endusers-devices\/dictionaries\/en.dict.itop-endusers-devices.php", + "2.x\/itop-endusers-devices\/dictionaries\/ru.dict.itop-endusers-devices.php", + "2.x\/itop-endusers-devices\/dictionaries\/it.dict.itop-endusers-devices.php", + "2.x\/itop-endusers-devices\/dictionaries\/en_gb.dict.itop-endusers-devices.php", + "2.x\/itop-endusers-devices\/dictionaries\/sk.dict.itop-endusers-devices.php", + "2.x\/itop-endusers-devices\/dictionaries\/es_cr.dict.itop-endusers-devices.php", + "2.x\/itop-endusers-devices\/dictionaries\/de.dict.itop-endusers-devices.php", + "2.x\/itop-endusers-devices\/dictionaries\/fr.dict.itop-endusers-devices.php", + "2.x\/itop-endusers-devices\/dictionaries\/tr.dict.itop-endusers-devices.php", + "2.x\/itop-endusers-devices\/dictionaries\/hu.dict.itop-endusers-devices.php", + "2.x\/itop-endusers-devices\/dictionaries\/da.dict.itop-endusers-devices.php", + "2.x\/itop-endusers-devices\/dictionaries\/zh_cn.dict.itop-endusers-devices.php", + "2.x\/itop-endusers-devices\/dictionaries\/nl.dict.itop-endusers-devices.php", + "2.x\/itop-endusers-devices\/dictionaries\/ja.dict.itop-endusers-devices.php", + "2.x\/itop-endusers-devices\/dictionaries\/pt_br.dict.itop-endusers-devices.php" + ] + }, + "itop-faq-light\/3.3.0": { + "label": "Frequently Asked Questions Database", + "category": "business", + "dependencies": [ + "itop-structure\/3.0.0 || itop-portal\/3.0.0" + ], + "mandatory": false, + "visible": true, + "installer": "FAQLightInstaller", + "datamodel": [], + "data.struct": [], + "data.sample": [ + "data.sample.faq-domains.xml" + ], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-faq-light\/module.itop-faq-light.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-faq-light", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-faq-light\/module.itop-faq-light.php", + "dictionary": [ + "2.x\/itop-faq-light\/dictionaries\/pl.dict.itop-faq-light.php", + "2.x\/itop-faq-light\/dictionaries\/da.dict.itop-faq-light.php", + "2.x\/itop-faq-light\/dictionaries\/en.dict.itop-faq-light.php", + "2.x\/itop-faq-light\/dictionaries\/zh_cn.dict.itop-faq-light.php", + "2.x\/itop-faq-light\/dictionaries\/es_cr.dict.itop-faq-light.php", + "2.x\/itop-faq-light\/dictionaries\/nl.dict.itop-faq-light.php", + "2.x\/itop-faq-light\/dictionaries\/pt_br.dict.itop-faq-light.php", + "2.x\/itop-faq-light\/dictionaries\/cs.dict.itop-faq-light.php", + "2.x\/itop-faq-light\/dictionaries\/ru.dict.itop-faq-light.php", + "2.x\/itop-faq-light\/dictionaries\/en_gb.dict.itop-faq-light.php", + "2.x\/itop-faq-light\/dictionaries\/tr.dict.itop-faq-light.php", + "2.x\/itop-faq-light\/dictionaries\/it.dict.itop-faq-light.php", + "2.x\/itop-faq-light\/dictionaries\/fr.dict.itop-faq-light.php", + "2.x\/itop-faq-light\/dictionaries\/hu.dict.itop-faq-light.php", + "2.x\/itop-faq-light\/dictionaries\/sk.dict.itop-faq-light.php", + "2.x\/itop-faq-light\/dictionaries\/de.dict.itop-faq-light.php", + "2.x\/itop-faq-light\/dictionaries\/ja.dict.itop-faq-light.php" + ] + }, + "itop-hub-connector\/3.3.0": { + "label": "iTop Hub Connector", + "category": "business", + "dependencies": [ + "itop-config-mgmt\/2.4.0" + ], + "mandatory": false, + "visible": true, + "datamodel": [ + "menus.php", + "hubnewsroomprovider.class.inc.php" + ], + "webservice": [], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-hub-connector\/module.itop-hub-connector.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-hub-connector", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-hub-connector\/module.itop-hub-connector.php", + "dictionary": [ + "2.x\/itop-hub-connector\/dictionaries\/en_gb.dict.itop-hub-connector.php", + "2.x\/itop-hub-connector\/dictionaries\/it.dict.itop-hub-connector.php", + "2.x\/itop-hub-connector\/dictionaries\/zh_cn.dict.itop-hub-connector.php", + "2.x\/itop-hub-connector\/dictionaries\/sk.dict.itop-hub-connector.php", + "2.x\/itop-hub-connector\/dictionaries\/cs.dict.itop-hub-connector.php", + "2.x\/itop-hub-connector\/dictionaries\/fr.dict.itop-hub-connector.php", + "2.x\/itop-hub-connector\/dictionaries\/hu.dict.itop-hub-connector.php", + "2.x\/itop-hub-connector\/dictionaries\/ru.dict.itop-hub-connector.php", + "2.x\/itop-hub-connector\/dictionaries\/ja.dict.itop-hub-connector.php", + "2.x\/itop-hub-connector\/dictionaries\/en.dict.itop-hub-connector.php", + "2.x\/itop-hub-connector\/dictionaries\/es_cr.dict.itop-hub-connector.php", + "2.x\/itop-hub-connector\/dictionaries\/tr.dict.itop-hub-connector.php", + "2.x\/itop-hub-connector\/dictionaries\/nl.dict.itop-hub-connector.php", + "2.x\/itop-hub-connector\/dictionaries\/pl.dict.itop-hub-connector.php", + "2.x\/itop-hub-connector\/dictionaries\/de.dict.itop-hub-connector.php", + "2.x\/itop-hub-connector\/dictionaries\/pt_br.dict.itop-hub-connector.php", + "2.x\/itop-hub-connector\/dictionaries\/da.dict.itop-hub-connector.php" + ] + }, + "itop-incident-mgmt-itil\/3.3.0": { + "label": "Incident Management ITIL", + "category": "business", + "dependencies": [ + "itop-config-mgmt\/2.4.0", + "itop-tickets\/2.4.0", + "itop-profiles-itil\/2.3.0" + ], + "mandatory": false, + "visible": true, + "datamodel": [], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-incident-mgmt-itil\/module.itop-incident-mgmt-itil.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-incident-mgmt-itil", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-incident-mgmt-itil\/module.itop-incident-mgmt-itil.php", + "dictionary": [ + "2.x\/itop-incident-mgmt-itil\/dictionaries\/en_gb.dict.itop-incident-mgmt-itil.php", + "2.x\/itop-incident-mgmt-itil\/dictionaries\/da.dict.itop-incident-mgmt-itil.php", + "2.x\/itop-incident-mgmt-itil\/dictionaries\/en.dict.itop-incident-mgmt-itil.php", + "2.x\/itop-incident-mgmt-itil\/dictionaries\/de.dict.itop-incident-mgmt-itil.php", + "2.x\/itop-incident-mgmt-itil\/dictionaries\/zh_cn.dict.itop-incident-mgmt-itil.php", + "2.x\/itop-incident-mgmt-itil\/dictionaries\/sk.dict.itop-incident-mgmt-itil.php", + "2.x\/itop-incident-mgmt-itil\/dictionaries\/fr.dict.itop-incident-mgmt-itil.php", + "2.x\/itop-incident-mgmt-itil\/dictionaries\/hu.dict.itop-incident-mgmt-itil.php", + "2.x\/itop-incident-mgmt-itil\/dictionaries\/ja.dict.itop-incident-mgmt-itil.php", + "2.x\/itop-incident-mgmt-itil\/dictionaries\/pl.dict.itop-incident-mgmt-itil.php", + "2.x\/itop-incident-mgmt-itil\/dictionaries\/cs.dict.itop-incident-mgmt-itil.php", + "2.x\/itop-incident-mgmt-itil\/dictionaries\/nl.dict.itop-incident-mgmt-itil.php", + "2.x\/itop-incident-mgmt-itil\/dictionaries\/ru.dict.itop-incident-mgmt-itil.php", + "2.x\/itop-incident-mgmt-itil\/dictionaries\/tr.dict.itop-incident-mgmt-itil.php", + "2.x\/itop-incident-mgmt-itil\/dictionaries\/it.dict.itop-incident-mgmt-itil.php", + "2.x\/itop-incident-mgmt-itil\/dictionaries\/pt_br.dict.itop-incident-mgmt-itil.php", + "2.x\/itop-incident-mgmt-itil\/dictionaries\/es_cr.dict.itop-incident-mgmt-itil.php" + ] + }, + "itop-knownerror-mgmt\/3.3.0": { + "label": "Known Errors Database", + "category": "business", + "dependencies": [ + "itop-config-mgmt\/2.2.0" + ], + "mandatory": false, + "visible": true, + "datamodel": [], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-knownerror-mgmt\/module.itop-knownerror-mgmt.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-knownerror-mgmt", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-knownerror-mgmt\/module.itop-knownerror-mgmt.php", + "dictionary": [ + "2.x\/itop-knownerror-mgmt\/dictionaries\/hu.dict.itop-knownerror-mgmt.php", + "2.x\/itop-knownerror-mgmt\/dictionaries\/nl.dict.itop-knownerror-mgmt.php", + "2.x\/itop-knownerror-mgmt\/dictionaries\/cs.dict.itop-knownerror-mgmt.php", + "2.x\/itop-knownerror-mgmt\/dictionaries\/es_cr.dict.itop-knownerror-mgmt.php", + "2.x\/itop-knownerror-mgmt\/dictionaries\/fr.dict.itop-knownerror-mgmt.php", + "2.x\/itop-knownerror-mgmt\/dictionaries\/ru.dict.itop-knownerror-mgmt.php", + "2.x\/itop-knownerror-mgmt\/dictionaries\/en.dict.itop-knownerror-mgmt.php", + "2.x\/itop-knownerror-mgmt\/dictionaries\/da.dict.itop-knownerror-mgmt.php", + "2.x\/itop-knownerror-mgmt\/dictionaries\/it.dict.itop-knownerror-mgmt.php", + "2.x\/itop-knownerror-mgmt\/dictionaries\/sk.dict.itop-knownerror-mgmt.php", + "2.x\/itop-knownerror-mgmt\/dictionaries\/pt_br.dict.itop-knownerror-mgmt.php", + "2.x\/itop-knownerror-mgmt\/dictionaries\/tr.dict.itop-knownerror-mgmt.php", + "2.x\/itop-knownerror-mgmt\/dictionaries\/zh_cn.dict.itop-knownerror-mgmt.php", + "2.x\/itop-knownerror-mgmt\/dictionaries\/de.dict.itop-knownerror-mgmt.php", + "2.x\/itop-knownerror-mgmt\/dictionaries\/en_gb.dict.itop-knownerror-mgmt.php", + "2.x\/itop-knownerror-mgmt\/dictionaries\/pl.dict.itop-knownerror-mgmt.php", + "2.x\/itop-knownerror-mgmt\/dictionaries\/ja.dict.itop-knownerror-mgmt.php" + ] + }, + "itop-oauth-client\/3.3.0": { + "label": "OAuth 2.0 client", + "category": "business", + "dependencies": [ + "itop-welcome-itil\/3.1.0," + ], + "mandatory": false, + "visible": true, + "datamodel": [ + "vendor\/autoload.php", + "src\/Service\/PopupMenuExtension.php", + "src\/Service\/ApplicationUIExtension.php" + ], + "webservice": [], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-oauth-client\/module.itop-oauth-client.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-oauth-client", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-oauth-client\/module.itop-oauth-client.php", + "dictionary": [ + "2.x\/itop-oauth-client\/dictionaries\/tr.dict.itop-oauth-client.php", + "2.x\/itop-oauth-client\/dictionaries\/fr.dict.itop-oauth-client.php", + "2.x\/itop-oauth-client\/dictionaries\/it.dict.itop-oauth-client.php", + "2.x\/itop-oauth-client\/dictionaries\/en.dict.itop-oauth-client.php", + "2.x\/itop-oauth-client\/dictionaries\/cs.dict.itop-oauth-client.php", + "2.x\/itop-oauth-client\/dictionaries\/sk.dict.itop-oauth-client.php", + "2.x\/itop-oauth-client\/dictionaries\/pl.dict.itop-oauth-client.php", + "2.x\/itop-oauth-client\/dictionaries\/ru.dict.itop-oauth-client.php", + "2.x\/itop-oauth-client\/dictionaries\/zh_cn.dict.itop-oauth-client.php", + "2.x\/itop-oauth-client\/dictionaries\/pt_br.dict.itop-oauth-client.php", + "2.x\/itop-oauth-client\/dictionaries\/es_cr.dict.itop-oauth-client.php", + "2.x\/itop-oauth-client\/dictionaries\/nl.dict.itop-oauth-client.php", + "2.x\/itop-oauth-client\/dictionaries\/ja.dict.itop-oauth-client.php", + "2.x\/itop-oauth-client\/dictionaries\/de.dict.itop-oauth-client.php", + "2.x\/itop-oauth-client\/dictionaries\/hu.dict.itop-oauth-client.php", + "2.x\/itop-oauth-client\/dictionaries\/en_gb.dict.itop-oauth-client.php", + "2.x\/itop-oauth-client\/dictionaries\/da.dict.itop-oauth-client.php" + ] + }, + "itop-problem-mgmt\/3.3.0": { + "label": "Problem Management", + "category": "business", + "dependencies": [ + "itop-tickets\/2.0.0" + ], + "mandatory": false, + "visible": true, + "datamodel": [], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-problem-mgmt\/module.itop-problem-mgmt.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-problem-mgmt", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-problem-mgmt\/module.itop-problem-mgmt.php", + "dictionary": [ + "2.x\/itop-problem-mgmt\/dictionaries\/tr.dict.itop-problem-mgmt.php", + "2.x\/itop-problem-mgmt\/dictionaries\/cs.dict.itop-problem-mgmt.php", + "2.x\/itop-problem-mgmt\/dictionaries\/sk.dict.itop-problem-mgmt.php", + "2.x\/itop-problem-mgmt\/dictionaries\/pt_br.dict.itop-problem-mgmt.php", + "2.x\/itop-problem-mgmt\/dictionaries\/es_cr.dict.itop-problem-mgmt.php", + "2.x\/itop-problem-mgmt\/dictionaries\/en_gb.dict.itop-problem-mgmt.php", + "2.x\/itop-problem-mgmt\/dictionaries\/da.dict.itop-problem-mgmt.php", + "2.x\/itop-problem-mgmt\/dictionaries\/ru.dict.itop-problem-mgmt.php", + "2.x\/itop-problem-mgmt\/dictionaries\/pl.dict.itop-problem-mgmt.php", + "2.x\/itop-problem-mgmt\/dictionaries\/en.dict.itop-problem-mgmt.php", + "2.x\/itop-problem-mgmt\/dictionaries\/hu.dict.itop-problem-mgmt.php", + "2.x\/itop-problem-mgmt\/dictionaries\/fr.dict.itop-problem-mgmt.php", + "2.x\/itop-problem-mgmt\/dictionaries\/nl.dict.itop-problem-mgmt.php", + "2.x\/itop-problem-mgmt\/dictionaries\/ja.dict.itop-problem-mgmt.php", + "2.x\/itop-problem-mgmt\/dictionaries\/de.dict.itop-problem-mgmt.php", + "2.x\/itop-problem-mgmt\/dictionaries\/zh_cn.dict.itop-problem-mgmt.php", + "2.x\/itop-problem-mgmt\/dictionaries\/it.dict.itop-problem-mgmt.php" + ] + }, + "itop-request-mgmt-itil\/3.3.0": { + "label": "User request Management ITIL", + "category": "business", + "dependencies": [ + "itop-tickets\/2.4.0" + ], + "mandatory": false, + "visible": true, + "datamodel": [ + "main.itop-request-mgmt-itil.php" + ], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-request-mgmt-itil\/module.itop-request-mgmt-itil.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-request-mgmt-itil", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-request-mgmt-itil\/module.itop-request-mgmt-itil.php", + "dictionary": [ + "2.x\/itop-request-mgmt-itil\/dictionaries\/ja.dict.itop-request-mgmt-itil.php", + "2.x\/itop-request-mgmt-itil\/dictionaries\/hu.dict.itop-request-mgmt-itil.php", + "2.x\/itop-request-mgmt-itil\/dictionaries\/fr.dict.itop-request-mgmt-itil.php", + "2.x\/itop-request-mgmt-itil\/dictionaries\/nl.dict.itop-request-mgmt-itil.php", + "2.x\/itop-request-mgmt-itil\/dictionaries\/ru.dict.itop-request-mgmt-itil.php", + "2.x\/itop-request-mgmt-itil\/dictionaries\/zh_cn.dict.itop-request-mgmt-itil.php", + "2.x\/itop-request-mgmt-itil\/dictionaries\/it.dict.itop-request-mgmt-itil.php", + "2.x\/itop-request-mgmt-itil\/dictionaries\/pl.dict.itop-request-mgmt-itil.php", + "2.x\/itop-request-mgmt-itil\/dictionaries\/pt_br.dict.itop-request-mgmt-itil.php", + "2.x\/itop-request-mgmt-itil\/dictionaries\/sk.dict.itop-request-mgmt-itil.php", + "2.x\/itop-request-mgmt-itil\/dictionaries\/tr.dict.itop-request-mgmt-itil.php", + "2.x\/itop-request-mgmt-itil\/dictionaries\/es_cr.dict.itop-request-mgmt-itil.php", + "2.x\/itop-request-mgmt-itil\/dictionaries\/en_gb.dict.itop-request-mgmt-itil.php", + "2.x\/itop-request-mgmt-itil\/dictionaries\/de.dict.itop-request-mgmt-itil.php", + "2.x\/itop-request-mgmt-itil\/dictionaries\/en.dict.itop-request-mgmt-itil.php", + "2.x\/itop-request-mgmt-itil\/dictionaries\/cs.dict.itop-request-mgmt-itil.php", + "2.x\/itop-request-mgmt-itil\/dictionaries\/da.dict.itop-request-mgmt-itil.php" + ] + }, + "itop-request-mgmt\/3.3.0": { + "label": "Simple Ticket Management", + "category": "business", + "dependencies": [ + "itop-tickets\/2.4.0" + ], + "mandatory": false, + "visible": true, + "datamodel": [ + "main.itop-request-mgmt.php" + ], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-request-mgmt\/module.itop-request-mgmt.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-request-mgmt", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-request-mgmt\/module.itop-request-mgmt.php", + "dictionary": [ + "2.x\/itop-request-mgmt\/dictionaries\/tr.dict.itop-request-mgmt.php", + "2.x\/itop-request-mgmt\/dictionaries\/da.dict.itop-request-mgmt.php", + "2.x\/itop-request-mgmt\/dictionaries\/it.dict.itop-request-mgmt.php", + "2.x\/itop-request-mgmt\/dictionaries\/fr.dict.itop-request-mgmt.php", + "2.x\/itop-request-mgmt\/dictionaries\/ru.dict.itop-request-mgmt.php", + "2.x\/itop-request-mgmt\/dictionaries\/cs.dict.itop-request-mgmt.php", + "2.x\/itop-request-mgmt\/dictionaries\/hu.dict.itop-request-mgmt.php", + "2.x\/itop-request-mgmt\/dictionaries\/en.dict.itop-request-mgmt.php", + "2.x\/itop-request-mgmt\/dictionaries\/pl.dict.itop-request-mgmt.php", + "2.x\/itop-request-mgmt\/dictionaries\/sk.dict.itop-request-mgmt.php", + "2.x\/itop-request-mgmt\/dictionaries\/pt_br.dict.itop-request-mgmt.php", + "2.x\/itop-request-mgmt\/dictionaries\/zh_cn.dict.itop-request-mgmt.php", + "2.x\/itop-request-mgmt\/dictionaries\/de.dict.itop-request-mgmt.php", + "2.x\/itop-request-mgmt\/dictionaries\/es_cr.dict.itop-request-mgmt.php", + "2.x\/itop-request-mgmt\/dictionaries\/en_gb.dict.itop-request-mgmt.php", + "2.x\/itop-request-mgmt\/dictionaries\/nl.dict.itop-request-mgmt.php", + "2.x\/itop-request-mgmt\/dictionaries\/ja.dict.itop-request-mgmt.php" + ] + }, + "itop-service-mgmt-provider\/3.3.0": { + "label": "Service Management for Service Providers", + "category": "business", + "dependencies": [ + "itop-tickets\/2.0.0" + ], + "mandatory": false, + "visible": true, + "installer": "ServiceMgmtProviderInstaller", + "datamodel": [], + "data.struct": [], + "data.sample": [ + "data.sample.organizations.xml", + "data.sample.contracts.xml", + "data.sample.servicefamilies.xml", + "data.sample.services.xml", + "data.sample.serviceelements.xml", + "data.sample.sla.xml", + "data.sample.slt.xml", + "data.sample.sltsla.xml", + "data.sample.contractservice.xml", + "data.sample.deliverymodelcontact.xml" + ], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-service-mgmt-provider\/module.itop-service-mgmt-provider.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-service-mgmt-provider", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-service-mgmt-provider\/module.itop-service-mgmt-provider.php", + "dictionary": [ + "2.x\/itop-service-mgmt-provider\/dictionaries\/zh_cn.dict.itop-service-mgmt-provider.php", + "2.x\/itop-service-mgmt-provider\/dictionaries\/tr.dict.itop-service-mgmt-provider.php", + "2.x\/itop-service-mgmt-provider\/dictionaries\/sk.dict.itop-service-mgmt-provider.php", + "2.x\/itop-service-mgmt-provider\/dictionaries\/de.dict.itop-service-mgmt-provider.php", + "2.x\/itop-service-mgmt-provider\/dictionaries\/ja.dict.itop-service-mgmt-provider.php", + "2.x\/itop-service-mgmt-provider\/dictionaries\/ru.dict.itop-service-mgmt-provider.php", + "2.x\/itop-service-mgmt-provider\/dictionaries\/pl.dict.itop-service-mgmt-provider.php", + "2.x\/itop-service-mgmt-provider\/dictionaries\/fr.dict.itop-service-mgmt-provider.php", + "2.x\/itop-service-mgmt-provider\/dictionaries\/hu.dict.itop-service-mgmt-provider.php", + "2.x\/itop-service-mgmt-provider\/dictionaries\/en.dict.itop-service-mgmt-provider.php", + "2.x\/itop-service-mgmt-provider\/dictionaries\/it.dict.itop-service-mgmt-provider.php", + "2.x\/itop-service-mgmt-provider\/dictionaries\/cs.dict.itop-service-mgmt-provider.php", + "2.x\/itop-service-mgmt-provider\/dictionaries\/es_cr.dict.itop-service-mgmt-provider.php", + "2.x\/itop-service-mgmt-provider\/dictionaries\/pt_br.dict.itop-service-mgmt-provider.php", + "2.x\/itop-service-mgmt-provider\/dictionaries\/da.dict.itop-service-mgmt-provider.php", + "2.x\/itop-service-mgmt-provider\/dictionaries\/en_gb.dict.itop-service-mgmt-provider.php", + "2.x\/itop-service-mgmt-provider\/dictionaries\/nl.dict.itop-service-mgmt-provider.php" + ] + }, + "itop-service-mgmt\/3.3.0": { + "label": "Service Management", + "category": "business", + "dependencies": [ + "itop-tickets\/2.0.0" + ], + "mandatory": false, + "visible": true, + "installer": "ServiceMgmtInstaller", + "datamodel": [], + "data.struct": [], + "data.sample": [ + "data.sample.organizations.xml", + "data.sample.contracts.xml", + "data.sample.servicefamilies.xml", + "data.sample.services.xml", + "data.sample.serviceelements.xml", + "data.sample.sla.xml", + "data.sample.slt.xml", + "data.sample.sltsla.xml", + "data.sample.contractservice.xml", + "data.sample.deliverymodelcontact.xml" + ], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-service-mgmt\/module.itop-service-mgmt.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-service-mgmt", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-service-mgmt\/module.itop-service-mgmt.php", + "dictionary": [ + "2.x\/itop-service-mgmt\/dictionaries\/en_gb.dict.itop-service-mgmt.php", + "2.x\/itop-service-mgmt\/dictionaries\/hu.dict.itop-service-mgmt.php", + "2.x\/itop-service-mgmt\/dictionaries\/es_cr.dict.itop-service-mgmt.php", + "2.x\/itop-service-mgmt\/dictionaries\/nl.dict.itop-service-mgmt.php", + "2.x\/itop-service-mgmt\/dictionaries\/sk.dict.itop-service-mgmt.php", + "2.x\/itop-service-mgmt\/dictionaries\/it.dict.itop-service-mgmt.php", + "2.x\/itop-service-mgmt\/dictionaries\/da.dict.itop-service-mgmt.php", + "2.x\/itop-service-mgmt\/dictionaries\/zh_cn.dict.itop-service-mgmt.php", + "2.x\/itop-service-mgmt\/dictionaries\/pl.dict.itop-service-mgmt.php", + "2.x\/itop-service-mgmt\/dictionaries\/tr.dict.itop-service-mgmt.php", + "2.x\/itop-service-mgmt\/dictionaries\/en.dict.itop-service-mgmt.php", + "2.x\/itop-service-mgmt\/dictionaries\/cs.dict.itop-service-mgmt.php", + "2.x\/itop-service-mgmt\/dictionaries\/de.dict.itop-service-mgmt.php", + "2.x\/itop-service-mgmt\/dictionaries\/ja.dict.itop-service-mgmt.php", + "2.x\/itop-service-mgmt\/dictionaries\/ru.dict.itop-service-mgmt.php", + "2.x\/itop-service-mgmt\/dictionaries\/pt_br.dict.itop-service-mgmt.php", + "2.x\/itop-service-mgmt\/dictionaries\/fr.dict.itop-service-mgmt.php" + ] + }, + "itop-storage-mgmt\/3.3.0": { + "label": "Advanced Storage Management", + "category": "business", + "dependencies": [ + "itop-config-mgmt\/2.4.0" + ], + "mandatory": false, + "visible": true, + "installer": "StorageMgmtInstaller", + "datamodel": [], + "webservice": [], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-storage-mgmt\/module.itop-storage-mgmt.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-storage-mgmt", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-storage-mgmt\/module.itop-storage-mgmt.php", + "dictionary": [ + "2.x\/itop-storage-mgmt\/dictionaries\/en.dict.itop-storage-mgmt.php", + "2.x\/itop-storage-mgmt\/dictionaries\/cs.dict.itop-storage-mgmt.php", + "2.x\/itop-storage-mgmt\/dictionaries\/ja.dict.itop-storage-mgmt.php", + "2.x\/itop-storage-mgmt\/dictionaries\/da.dict.itop-storage-mgmt.php", + "2.x\/itop-storage-mgmt\/dictionaries\/pt_br.dict.itop-storage-mgmt.php", + "2.x\/itop-storage-mgmt\/dictionaries\/it.dict.itop-storage-mgmt.php", + "2.x\/itop-storage-mgmt\/dictionaries\/nl.dict.itop-storage-mgmt.php", + "2.x\/itop-storage-mgmt\/dictionaries\/fr.dict.itop-storage-mgmt.php", + "2.x\/itop-storage-mgmt\/dictionaries\/tr.dict.itop-storage-mgmt.php", + "2.x\/itop-storage-mgmt\/dictionaries\/es_cr.dict.itop-storage-mgmt.php", + "2.x\/itop-storage-mgmt\/dictionaries\/sk.dict.itop-storage-mgmt.php", + "2.x\/itop-storage-mgmt\/dictionaries\/zh_cn.dict.itop-storage-mgmt.php", + "2.x\/itop-storage-mgmt\/dictionaries\/en_gb.dict.itop-storage-mgmt.php", + "2.x\/itop-storage-mgmt\/dictionaries\/de.dict.itop-storage-mgmt.php", + "2.x\/itop-storage-mgmt\/dictionaries\/hu.dict.itop-storage-mgmt.php", + "2.x\/itop-storage-mgmt\/dictionaries\/pl.dict.itop-storage-mgmt.php", + "2.x\/itop-storage-mgmt\/dictionaries\/ru.dict.itop-storage-mgmt.php" + ] + }, + "itop-virtualization-mgmt\/3.3.0": { + "label": "Virtualization Management", + "category": "business", + "dependencies": [ + "itop-config-mgmt\/2.4.0" + ], + "mandatory": false, + "visible": true, + "datamodel": [], + "webservice": [], + "data.struct": [], + "data.sample": [ + "data.sample.farm.xml", + "data.sample.hypervisor.xml", + "data.sample.vm.xml", + "data.sample.dbserver.xml", + "data.sample.dbschema.xml", + "data.sample.webserver.xml", + "data.sample.webapp.xml", + "data.sample.applicationsolutionci.xml" + ], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-virtualization-mgmt\/module.itop-virtualization-mgmt.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-virtualization-mgmt", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-virtualization-mgmt\/module.itop-virtualization-mgmt.php", + "dictionary": [ + "2.x\/itop-virtualization-mgmt\/dictionaries\/de.dict.itop-virtualization-mgmt.php", + "2.x\/itop-virtualization-mgmt\/dictionaries\/en_gb.dict.itop-virtualization-mgmt.php", + "2.x\/itop-virtualization-mgmt\/dictionaries\/nl.dict.itop-virtualization-mgmt.php", + "2.x\/itop-virtualization-mgmt\/dictionaries\/ja.dict.itop-virtualization-mgmt.php", + "2.x\/itop-virtualization-mgmt\/dictionaries\/zh_cn.dict.itop-virtualization-mgmt.php", + "2.x\/itop-virtualization-mgmt\/dictionaries\/ru.dict.itop-virtualization-mgmt.php", + "2.x\/itop-virtualization-mgmt\/dictionaries\/sk.dict.itop-virtualization-mgmt.php", + "2.x\/itop-virtualization-mgmt\/dictionaries\/tr.dict.itop-virtualization-mgmt.php", + "2.x\/itop-virtualization-mgmt\/dictionaries\/fr.dict.itop-virtualization-mgmt.php", + "2.x\/itop-virtualization-mgmt\/dictionaries\/cs.dict.itop-virtualization-mgmt.php", + "2.x\/itop-virtualization-mgmt\/dictionaries\/da.dict.itop-virtualization-mgmt.php", + "2.x\/itop-virtualization-mgmt\/dictionaries\/hu.dict.itop-virtualization-mgmt.php", + "2.x\/itop-virtualization-mgmt\/dictionaries\/es_cr.dict.itop-virtualization-mgmt.php", + "2.x\/itop-virtualization-mgmt\/dictionaries\/en.dict.itop-virtualization-mgmt.php", + "2.x\/itop-virtualization-mgmt\/dictionaries\/pl.dict.itop-virtualization-mgmt.php", + "2.x\/itop-virtualization-mgmt\/dictionaries\/pt_br.dict.itop-virtualization-mgmt.php", + "2.x\/itop-virtualization-mgmt\/dictionaries\/it.dict.itop-virtualization-mgmt.php" + ] + }, + "itop-bridge-cmdb-services\/3.3.0": { + "label": "Bridge for CMDB and Services", + "category": "business", + "dependencies": [ + "itop-config-mgmt\/2.7.1", + "itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1" + ], + "mandatory": false, + "visible": false, + "auto_select": "SetupInfo::ModuleIsSelected(\"itop-config-mgmt\") && (SetupInfo::ModuleIsSelected(\"itop-service-mgmt\") || SetupInfo::ModuleIsSelected(\"itop-service-mgmt-provider\")) ", + "datamodel": [], + "webservice": [], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-bridge-cmdb-services\/module.itop-bridge-cmdb-services.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-bridge-cmdb-services", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-bridge-cmdb-services\/module.itop-bridge-cmdb-services.php", + "dictionary": [ + "2.x\/itop-bridge-cmdb-services\/dictionaries\/es_cr.dict.itop-bridge-cmdb-services.php", + "2.x\/itop-bridge-cmdb-services\/dictionaries\/cs.dict.itop-bridge-cmdb-services.php", + "2.x\/itop-bridge-cmdb-services\/dictionaries\/ja.dict.itop-bridge-cmdb-services.php", + "2.x\/itop-bridge-cmdb-services\/dictionaries\/hu.dict.itop-bridge-cmdb-services.php", + "2.x\/itop-bridge-cmdb-services\/dictionaries\/it.dict.itop-bridge-cmdb-services.php", + "2.x\/itop-bridge-cmdb-services\/dictionaries\/fr.dict.itop-bridge-cmdb-services.php", + "2.x\/itop-bridge-cmdb-services\/dictionaries\/pl.dict.itop-bridge-cmdb-services.php", + "2.x\/itop-bridge-cmdb-services\/dictionaries\/pt_br.dict.itop-bridge-cmdb-services.php", + "2.x\/itop-bridge-cmdb-services\/dictionaries\/nl.dict.itop-bridge-cmdb-services.php", + "2.x\/itop-bridge-cmdb-services\/dictionaries\/tr.dict.itop-bridge-cmdb-services.php", + "2.x\/itop-bridge-cmdb-services\/dictionaries\/da.dict.itop-bridge-cmdb-services.php", + "2.x\/itop-bridge-cmdb-services\/dictionaries\/ru.dict.itop-bridge-cmdb-services.php", + "2.x\/itop-bridge-cmdb-services\/dictionaries\/de.dict.itop-bridge-cmdb-services.php", + "2.x\/itop-bridge-cmdb-services\/dictionaries\/sk.dict.itop-bridge-cmdb-services.php", + "2.x\/itop-bridge-cmdb-services\/dictionaries\/zh_cn.dict.itop-bridge-cmdb-services.php", + "2.x\/itop-bridge-cmdb-services\/dictionaries\/en.dict.itop-bridge-cmdb-services.php", + "2.x\/itop-bridge-cmdb-services\/dictionaries\/en_gb.dict.itop-bridge-cmdb-services.php" + ] + }, + "itop-bridge-cmdb-ticket\/3.3.0": { + "label": "Bridge for CMDB and Ticket", + "category": "business", + "dependencies": [ + "itop-config-mgmt\/2.7.1", + "itop-tickets\/2.7.0" + ], + "mandatory": false, + "visible": false, + "auto_select": "SetupInfo::ModuleIsSelected(\"itop-config-mgmt\") && SetupInfo::ModuleIsSelected(\"itop-tickets\") ", + "datamodel": [], + "webservice": [], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-bridge-cmdb-ticket\/module.itop-bridge-cmdb-ticket.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-bridge-cmdb-ticket", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-bridge-cmdb-ticket\/module.itop-bridge-cmdb-ticket.php", + "dictionary": [ + "2.x\/itop-bridge-cmdb-ticket\/dictionaries\/it.dict.itop-bridge-cmdb-ticket.php", + "2.x\/itop-bridge-cmdb-ticket\/dictionaries\/ru.dict.itop-bridge-cmdb-ticket.php", + "2.x\/itop-bridge-cmdb-ticket\/dictionaries\/pt_br.dict.itop-bridge-cmdb-ticket.php", + "2.x\/itop-bridge-cmdb-ticket\/dictionaries\/zh_cn.dict.itop-bridge-cmdb-ticket.php", + "2.x\/itop-bridge-cmdb-ticket\/dictionaries\/en.dict.itop-bridge-cmdb-ticket.php", + "2.x\/itop-bridge-cmdb-ticket\/dictionaries\/ja.dict.itop-bridge-cmdb-ticket.php", + "2.x\/itop-bridge-cmdb-ticket\/dictionaries\/en_gb.dict.itop-bridge-cmdb-ticket.php", + "2.x\/itop-bridge-cmdb-ticket\/dictionaries\/hu.dict.itop-bridge-cmdb-ticket.php", + "2.x\/itop-bridge-cmdb-ticket\/dictionaries\/de.dict.itop-bridge-cmdb-ticket.php", + "2.x\/itop-bridge-cmdb-ticket\/dictionaries\/es_cr.dict.itop-bridge-cmdb-ticket.php", + "2.x\/itop-bridge-cmdb-ticket\/dictionaries\/tr.dict.itop-bridge-cmdb-ticket.php", + "2.x\/itop-bridge-cmdb-ticket\/dictionaries\/pl.dict.itop-bridge-cmdb-ticket.php", + "2.x\/itop-bridge-cmdb-ticket\/dictionaries\/fr.dict.itop-bridge-cmdb-ticket.php", + "2.x\/itop-bridge-cmdb-ticket\/dictionaries\/cs.dict.itop-bridge-cmdb-ticket.php", + "2.x\/itop-bridge-cmdb-ticket\/dictionaries\/da.dict.itop-bridge-cmdb-ticket.php", + "2.x\/itop-bridge-cmdb-ticket\/dictionaries\/nl.dict.itop-bridge-cmdb-ticket.php", + "2.x\/itop-bridge-cmdb-ticket\/dictionaries\/sk.dict.itop-bridge-cmdb-ticket.php" + ] + }, + "itop-bridge-datacenter-mgmt-services\/3.3.0": { + "label": "Bridge for CMDB Virtualization objects and Services", + "category": "business", + "dependencies": [ + "itop-config-mgmt\/2.7.1", + "itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1", + "itop-datacenter-mgmt\/3.1.0" + ], + "mandatory": false, + "visible": false, + "auto_select": "SetupInfo::ModuleIsSelected(\"itop-datacenter-mgmt\") && (SetupInfo::ModuleIsSelected(\"itop-service-mgmt\") || SetupInfo::ModuleIsSelected(\"itop-service-mgmt-provider\")) ", + "datamodel": [], + "webservice": [], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-bridge-datacenter-mgmt-services\/module.itop-bridge-datacenter-mgmt-services.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-bridge-datacenter-mgmt-services", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-bridge-datacenter-mgmt-services\/module.itop-bridge-datacenter-mgmt-services.php" + }, + "itop-bridge-endusers-devices-services\/3.3.0": { + "label": "Bridge for CMDB endusers objects and Services", + "category": "business", + "dependencies": [ + "itop-config-mgmt\/2.7.1", + "itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1", + "itop-endusers-devices\/3.1.0" + ], + "mandatory": false, + "visible": false, + "auto_select": "SetupInfo::ModuleIsSelected(\"itop-endusers-devices\") && (SetupInfo::ModuleIsSelected(\"itop-service-mgmt\") || SetupInfo::ModuleIsSelected(\"itop-service-mgmt-provider\")) ", + "datamodel": [], + "webservice": [], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-bridge-endusers-devices-services\/module.itop-bridge-endusers-devices-services.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-bridge-endusers-devices-services", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-bridge-endusers-devices-services\/module.itop-bridge-endusers-devices-services.php" + }, + "itop-bridge-storage-mgmt-services\/3.3.0": { + "label": "Bridge for CMDB Virtualization objects and Services", + "category": "business", + "dependencies": [ + "itop-config-mgmt\/2.7.1", + "itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1", + "itop-storage-mgmt\/3.1.0" + ], + "mandatory": false, + "visible": false, + "auto_select": "SetupInfo::ModuleIsSelected(\"itop-storage-mgmt\") && (SetupInfo::ModuleIsSelected(\"itop-service-mgmt\") || SetupInfo::ModuleIsSelected(\"itop-service-mgmt-provider\")) ", + "datamodel": [], + "webservice": [], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-bridge-storage-mgmt-services\/module.itop-bridge-storage-mgmt-services.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-bridge-storage-mgmt-services", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-bridge-storage-mgmt-services\/module.itop-bridge-storage-mgmt-services.php" + }, + "itop-bridge-virtualization-mgmt-services\/3.3.0": { + "label": "Bridge for CMDB Virtualization objects and Services", + "category": "business", + "dependencies": [ + "itop-config-mgmt\/2.7.1", + "itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1", + "itop-virtualization-mgmt\/3.1.0" + ], + "mandatory": false, + "visible": false, + "auto_select": "SetupInfo::ModuleIsSelected(\"itop-virtualization-mgmt\") && (SetupInfo::ModuleIsSelected(\"itop-service-mgmt\") || SetupInfo::ModuleIsSelected(\"itop-service-mgmt-provider\")) ", + "datamodel": [], + "webservice": [], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-bridge-virtualization-mgmt-services\/module.itop-bridge-virtualization-mgmt-services.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-bridge-virtualization-mgmt-services", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-bridge-virtualization-mgmt-services\/module.itop-bridge-virtualization-mgmt-services.php" + }, + "itop-bridge-virtualization-storage\/3.3.0": { + "label": "Links between virtualization and storage", + "category": "business", + "dependencies": [ + "itop-storage-mgmt\/2.2.0", + "itop-virtualization-mgmt\/2.2.0" + ], + "mandatory": false, + "visible": false, + "auto_select": "SetupInfo::ModuleIsSelected(\"itop-storage-mgmt\") && SetupInfo::ModuleIsSelected(\"itop-virtualization-mgmt\")", + "datamodel": [], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-bridge-virtualization-storage\/module.itop-bridge-virtualization-storage.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-bridge-virtualization-storage", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-bridge-virtualization-storage\/module.itop-bridge-virtualization-storage.php" + }, + "itop-change-mgmt-itil\/3.3.0": { + "label": "Change Management ITIL", + "category": "business", + "dependencies": [ + "itop-config-mgmt\/2.2.0", + "itop-tickets\/2.0.0" + ], + "mandatory": false, + "visible": true, + "datamodel": [], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-change-mgmt-itil\/module.itop-change-mgmt-itil.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-change-mgmt-itil", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-change-mgmt-itil\/module.itop-change-mgmt-itil.php", + "dictionary": [ + "2.x\/itop-change-mgmt-itil\/dictionaries\/hu.dict.itop-change-mgmt-itil.php", + "2.x\/itop-change-mgmt-itil\/dictionaries\/tr.dict.itop-change-mgmt-itil.php", + "2.x\/itop-change-mgmt-itil\/dictionaries\/fr.dict.itop-change-mgmt-itil.php", + "2.x\/itop-change-mgmt-itil\/dictionaries\/en.dict.itop-change-mgmt-itil.php", + "2.x\/itop-change-mgmt-itil\/dictionaries\/cs.dict.itop-change-mgmt-itil.php", + "2.x\/itop-change-mgmt-itil\/dictionaries\/da.dict.itop-change-mgmt-itil.php", + "2.x\/itop-change-mgmt-itil\/dictionaries\/sk.dict.itop-change-mgmt-itil.php", + "2.x\/itop-change-mgmt-itil\/dictionaries\/en_gb.dict.itop-change-mgmt-itil.php", + "2.x\/itop-change-mgmt-itil\/dictionaries\/nl.dict.itop-change-mgmt-itil.php", + "2.x\/itop-change-mgmt-itil\/dictionaries\/ja.dict.itop-change-mgmt-itil.php", + "2.x\/itop-change-mgmt-itil\/dictionaries\/es_cr.dict.itop-change-mgmt-itil.php", + "2.x\/itop-change-mgmt-itil\/dictionaries\/zh_cn.dict.itop-change-mgmt-itil.php", + "2.x\/itop-change-mgmt-itil\/dictionaries\/de.dict.itop-change-mgmt-itil.php", + "2.x\/itop-change-mgmt-itil\/dictionaries\/it.dict.itop-change-mgmt-itil.php", + "2.x\/itop-change-mgmt-itil\/dictionaries\/ru.dict.itop-change-mgmt-itil.php", + "2.x\/itop-change-mgmt-itil\/dictionaries\/pl.dict.itop-change-mgmt-itil.php", + "2.x\/itop-change-mgmt-itil\/dictionaries\/pt_br.dict.itop-change-mgmt-itil.php" + ] + }, + "itop-change-mgmt\/3.3.0": { + "label": "Change Management", + "category": "business", + "dependencies": [ + "itop-config-mgmt\/2.2.0", + "itop-tickets\/2.0.0" + ], + "mandatory": false, + "visible": true, + "installer": "ChangeManagementInstaller", + "datamodel": [], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-change-mgmt\/module.itop-change-mgmt.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-change-mgmt", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-change-mgmt\/module.itop-change-mgmt.php", + "dictionary": [ + "2.x\/itop-change-mgmt\/dictionaries\/zh_cn.dict.itop-change-mgmt.php", + "2.x\/itop-change-mgmt\/dictionaries\/en.dict.itop-change-mgmt.php", + "2.x\/itop-change-mgmt\/dictionaries\/tr.dict.itop-change-mgmt.php", + "2.x\/itop-change-mgmt\/dictionaries\/it.dict.itop-change-mgmt.php", + "2.x\/itop-change-mgmt\/dictionaries\/cs.dict.itop-change-mgmt.php", + "2.x\/itop-change-mgmt\/dictionaries\/hu.dict.itop-change-mgmt.php", + "2.x\/itop-change-mgmt\/dictionaries\/pl.dict.itop-change-mgmt.php", + "2.x\/itop-change-mgmt\/dictionaries\/en_gb.dict.itop-change-mgmt.php", + "2.x\/itop-change-mgmt\/dictionaries\/ja.dict.itop-change-mgmt.php", + "2.x\/itop-change-mgmt\/dictionaries\/da.dict.itop-change-mgmt.php", + "2.x\/itop-change-mgmt\/dictionaries\/es_cr.dict.itop-change-mgmt.php", + "2.x\/itop-change-mgmt\/dictionaries\/de.dict.itop-change-mgmt.php", + "2.x\/itop-change-mgmt\/dictionaries\/nl.dict.itop-change-mgmt.php", + "2.x\/itop-change-mgmt\/dictionaries\/sk.dict.itop-change-mgmt.php", + "2.x\/itop-change-mgmt\/dictionaries\/ru.dict.itop-change-mgmt.php", + "2.x\/itop-change-mgmt\/dictionaries\/pt_br.dict.itop-change-mgmt.php", + "2.x\/itop-change-mgmt\/dictionaries\/fr.dict.itop-change-mgmt.php" + ] + }, + "itop-full-itil\/3.3.0": { + "label": "Bridge - Request management ITIL + Incident management ITIL", + "category": "business", + "dependencies": [ + "itop-request-mgmt-itil\/2.3.0", + "itop-incident-mgmt-itil\/2.3.0" + ], + "mandatory": false, + "visible": false, + "auto_select": "SetupInfo::ModuleIsSelected(\"itop-request-mgmt-itil\") && SetupInfo::ModuleIsSelected(\"itop-incident-mgmt-itil\")", + "datamodel": [], + "webservice": [], + "data.struct": [], + "data.sample": [], + "doc.manual_setup": "", + "doc.more_information": "", + "settings": [], + "module_file_path": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-full-itil\/module.itop-full-itil.php", + "itop_version": "1.0.2", + "root_dir": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-full-itil", + "module_file": "\/var\/www\/html\/iTopLegacy\/datamodels\/2.x\/itop-full-itil\/module.itop-full-itil.php" + } +} \ No newline at end of file diff --git a/tests/php-unit-tests/unitary-tests/setup/ressources/priv_modules.json b/tests/php-unit-tests/unitary-tests/setup/ressources/priv_modules.json new file mode 100644 index 000000000..ac6f2b7cd --- /dev/null +++ b/tests/php-unit-tests/unitary-tests/setup/ressources/priv_modules.json @@ -0,0 +1,7218 @@ +[ + { + "0": "1", + "id": "1", + "1": "datamodel", + "name": "datamodel", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:22:30", + "installed": "2025-11-10 10:22:30", + "4": "{\"source_dir\":\"datamodels\\\/2.x\\\/\"}", + "comment": "{\"source_dir\":\"datamodels\\\/2.x\\\/\"}", + "5": "0", + "parent_id": "0", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "2", + "id": "2", + "1": "iTop", + "name": "iTop", + "2": "3.3.0-dev-svn", + "version": "3.3.0-dev-svn", + "3": "2025-11-10 10:22:30", + "installed": "2025-11-10 10:22:30", + "4": "Done by the setup program\nBuilt on $WCNOW$", + "comment": "Done by the setup program\nBuilt on $WCNOW$", + "5": "0", + "parent_id": "0", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "3", + "id": "3", + "1": "authent-cas", + "name": "authent-cas", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:22:30", + "installed": "2025-11-10 10:22:30", + "4": "Done by the setup program\nMandatory\nVisible (during the setup)", + "comment": "Done by the setup program\nMandatory\nVisible (during the setup)", + "5": "2", + "parent_id": "2", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "4", + "id": "4", + "1": "authent-external", + "name": "authent-external", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:22:30", + "installed": "2025-11-10 10:22:30", + "4": "Done by the setup program\nOptional\nVisible (during the setup)", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)", + "5": "2", + "parent_id": "2", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "5", + "id": "5", + "1": "authent-ldap", + "name": "authent-ldap", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:22:30", + "installed": "2025-11-10 10:22:30", + "4": "Done by the setup program\nOptional\nVisible (during the setup)", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)", + "5": "2", + "parent_id": "2", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "6", + "id": "6", + "1": "authent-local", + "name": "authent-local", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:22:30", + "installed": "2025-11-10 10:22:30", + "4": "Done by the setup program\nMandatory\nVisible (during the setup)", + "comment": "Done by the setup program\nMandatory\nVisible (during the setup)", + "5": "2", + "parent_id": "2", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "7", + "id": "7", + "1": "combodo-backoffice-darkmoon-theme", + "name": "combodo-backoffice-darkmoon-theme", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:22:30", + "installed": "2025-11-10 10:22:30", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "2", + "parent_id": "2", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "8", + "id": "8", + "1": "combodo-backoffice-fullmoon-high-contrast-theme", + "name": "combodo-backoffice-fullmoon-high-contrast-theme", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:22:30", + "installed": "2025-11-10 10:22:30", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "2", + "parent_id": "2", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "9", + "id": "9", + "1": "combodo-backoffice-fullmoon-protanopia-deuteranopia-theme", + "name": "combodo-backoffice-fullmoon-protanopia-deuteranopia-theme", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:22:30", + "installed": "2025-11-10 10:22:30", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "2", + "parent_id": "2", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "10", + "id": "10", + "1": "combodo-backoffice-fullmoon-tritanopia-theme", + "name": "combodo-backoffice-fullmoon-tritanopia-theme", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:22:30", + "installed": "2025-11-10 10:22:30", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "2", + "parent_id": "2", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "11", + "id": "11", + "1": "itop-backup", + "name": "itop-backup", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:22:30", + "installed": "2025-11-10 10:22:30", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "2", + "parent_id": "2", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "12", + "id": "12", + "1": "itop-config", + "name": "itop-config", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:22:30", + "installed": "2025-11-10 10:22:30", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "2", + "parent_id": "2", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "13", + "id": "13", + "1": "itop-files-information", + "name": "itop-files-information", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:22:30", + "installed": "2025-11-10 10:22:30", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)", + "5": "2", + "parent_id": "2", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "14", + "id": "14", + "1": "itop-portal-base", + "name": "itop-portal-base", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:22:30", + "installed": "2025-11-10 10:22:30", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "2", + "parent_id": "2", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "15", + "id": "15", + "1": "itop-profiles-itil", + "name": "itop-profiles-itil", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:22:30", + "installed": "2025-11-10 10:22:30", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "2", + "parent_id": "2", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "16", + "id": "16", + "1": "itop-sla-computation", + "name": "itop-sla-computation", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:22:30", + "installed": "2025-11-10 10:22:30", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "2", + "parent_id": "2", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "17", + "id": "17", + "1": "itop-structure", + "name": "itop-structure", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:22:30", + "installed": "2025-11-10 10:22:30", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "2", + "parent_id": "2", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "18", + "id": "18", + "1": "itop-welcome-itil", + "name": "itop-welcome-itil", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:22:30", + "installed": "2025-11-10 10:22:30", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "2", + "parent_id": "2", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "19", + "id": "19", + "1": "itop-config-mgmt", + "name": "itop-config-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:22:30", + "installed": "2025-11-10 10:22:30", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/2.7.1", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/2.7.1", + "5": "2", + "parent_id": "2", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "20", + "id": "20", + "1": "itop-attachments", + "name": "itop-attachments", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:22:30", + "installed": "2025-11-10 10:22:30", + "4": "Done by the setup program\nOptional\nVisible (during the setup)", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)", + "5": "2", + "parent_id": "2", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "21", + "id": "21", + "1": "itop-tickets", + "name": "itop-tickets", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:22:30", + "installed": "2025-11-10 10:22:30", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/2.7.1", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/2.7.1", + "5": "2", + "parent_id": "2", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "22", + "id": "22", + "1": "combodo-db-tools", + "name": "combodo-db-tools", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:22:30", + "installed": "2025-11-10 10:22:30", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/3.0.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/3.0.0", + "5": "2", + "parent_id": "2", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "23", + "id": "23", + "1": "itop-core-update", + "name": "itop-core-update", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:22:30", + "installed": "2025-11-10 10:22:30", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-files-information\/2.7.0\nDepends on module: combodo-db-tools\/2.7.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-files-information\/2.7.0\nDepends on module: combodo-db-tools\/2.7.0", + "5": "2", + "parent_id": "2", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "24", + "id": "24", + "1": "itop-hub-connector", + "name": "itop-hub-connector", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:22:30", + "installed": "2025-11-10 10:22:30", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "5": "2", + "parent_id": "2", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "25", + "id": "25", + "1": "itop-oauth-client", + "name": "itop-oauth-client", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:22:30", + "installed": "2025-11-10 10:22:30", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-welcome-itil\/3.1.0,", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-welcome-itil\/3.1.0,", + "5": "2", + "parent_id": "2", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "26", + "id": "26", + "1": "itop-themes-compat", + "name": "itop-themes-compat", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:22:30", + "installed": "2025-11-10 10:22:30", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/3.1.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/3.1.0", + "5": "2", + "parent_id": "2", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "27", + "id": "27", + "1": "itop-datacenter-mgmt", + "name": "itop-datacenter-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:22:30", + "installed": "2025-11-10 10:22:30", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0", + "5": "2", + "parent_id": "2", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "28", + "id": "28", + "1": "itop-endusers-devices", + "name": "itop-endusers-devices", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:22:30", + "installed": "2025-11-10 10:22:30", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0", + "5": "2", + "parent_id": "2", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "29", + "id": "29", + "1": "itop-storage-mgmt", + "name": "itop-storage-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:22:30", + "installed": "2025-11-10 10:22:30", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "5": "2", + "parent_id": "2", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "30", + "id": "30", + "1": "itop-virtualization-mgmt", + "name": "itop-virtualization-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:22:30", + "installed": "2025-11-10 10:22:30", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "5": "2", + "parent_id": "2", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "31", + "id": "31", + "1": "itop-bridge-cmdb-ticket", + "name": "itop-bridge-cmdb-ticket", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:22:30", + "installed": "2025-11-10 10:22:30", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-tickets\/2.7.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-tickets\/2.7.0", + "5": "2", + "parent_id": "2", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "32", + "id": "32", + "1": "itop-bridge-virtualization-storage", + "name": "itop-bridge-virtualization-storage", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:22:30", + "installed": "2025-11-10 10:22:30", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-storage-mgmt\/2.2.0\nDepends on module: itop-virtualization-mgmt\/2.2.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-storage-mgmt\/2.2.0\nDepends on module: itop-virtualization-mgmt\/2.2.0", + "5": "2", + "parent_id": "2", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "33", + "id": "33", + "1": "itop-service-mgmt", + "name": "itop-service-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:22:30", + "installed": "2025-11-10 10:22:30", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-tickets\/2.0.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-tickets\/2.0.0", + "5": "2", + "parent_id": "2", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "34", + "id": "34", + "1": "itop-bridge-cmdb-services", + "name": "itop-bridge-cmdb-services", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:22:30", + "installed": "2025-11-10 10:22:30", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1", + "5": "2", + "parent_id": "2", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "35", + "id": "35", + "1": "itop-bridge-datacenter-mgmt-services", + "name": "itop-bridge-datacenter-mgmt-services", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:22:30", + "installed": "2025-11-10 10:22:30", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-datacenter-mgmt\/3.1.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-datacenter-mgmt\/3.1.0", + "5": "2", + "parent_id": "2", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "36", + "id": "36", + "1": "itop-bridge-endusers-devices-services", + "name": "itop-bridge-endusers-devices-services", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:22:30", + "installed": "2025-11-10 10:22:30", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-endusers-devices\/3.1.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-endusers-devices\/3.1.0", + "5": "2", + "parent_id": "2", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "37", + "id": "37", + "1": "itop-bridge-storage-mgmt-services", + "name": "itop-bridge-storage-mgmt-services", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:22:30", + "installed": "2025-11-10 10:22:30", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-storage-mgmt\/3.1.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-storage-mgmt\/3.1.0", + "5": "2", + "parent_id": "2", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "38", + "id": "38", + "1": "itop-bridge-virtualization-mgmt-services", + "name": "itop-bridge-virtualization-mgmt-services", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:22:30", + "installed": "2025-11-10 10:22:30", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-virtualization-mgmt\/3.1.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-virtualization-mgmt\/3.1.0", + "5": "2", + "parent_id": "2", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "39", + "id": "39", + "1": "itop-request-mgmt", + "name": "itop-request-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:22:30", + "installed": "2025-11-10 10:22:30", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-tickets\/2.4.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-tickets\/2.4.0", + "5": "2", + "parent_id": "2", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "40", + "id": "40", + "1": "itop-portal", + "name": "itop-portal", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:22:30", + "installed": "2025-11-10 10:22:30", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-portal-base\/2.7.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-portal-base\/2.7.0", + "5": "2", + "parent_id": "2", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "41", + "id": "41", + "1": "itop-change-mgmt", + "name": "itop-change-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:22:30", + "installed": "2025-11-10 10:22:30", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0\nDepends on module: itop-tickets\/2.0.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0\nDepends on module: itop-tickets\/2.0.0", + "5": "2", + "parent_id": "2", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "42", + "id": "42", + "1": "datamodel", + "name": "datamodel", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:23:17", + "installed": "2025-11-10 10:23:17", + "4": "{\"source_dir\":\"datamodels\\\/2.x\\\/\"}", + "comment": "{\"source_dir\":\"datamodels\\\/2.x\\\/\"}", + "5": "0", + "parent_id": "0", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "43", + "id": "43", + "1": "iTop", + "name": "iTop", + "2": "3.3.0-dev-svn", + "version": "3.3.0-dev-svn", + "3": "2025-11-10 10:23:17", + "installed": "2025-11-10 10:23:17", + "4": "Done by the setup program\nBuilt on $WCNOW$", + "comment": "Done by the setup program\nBuilt on $WCNOW$", + "5": "0", + "parent_id": "0", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "44", + "id": "44", + "1": "authent-cas", + "name": "authent-cas", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:23:17", + "installed": "2025-11-10 10:23:17", + "4": "Done by the setup program\nMandatory\nVisible (during the setup)", + "comment": "Done by the setup program\nMandatory\nVisible (during the setup)", + "5": "43", + "parent_id": "43", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "45", + "id": "45", + "1": "authent-external", + "name": "authent-external", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:23:17", + "installed": "2025-11-10 10:23:17", + "4": "Done by the setup program\nOptional\nVisible (during the setup)", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)", + "5": "43", + "parent_id": "43", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "46", + "id": "46", + "1": "authent-ldap", + "name": "authent-ldap", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:23:17", + "installed": "2025-11-10 10:23:17", + "4": "Done by the setup program\nOptional\nVisible (during the setup)", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)", + "5": "43", + "parent_id": "43", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "47", + "id": "47", + "1": "authent-local", + "name": "authent-local", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:23:17", + "installed": "2025-11-10 10:23:17", + "4": "Done by the setup program\nMandatory\nVisible (during the setup)", + "comment": "Done by the setup program\nMandatory\nVisible (during the setup)", + "5": "43", + "parent_id": "43", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "48", + "id": "48", + "1": "combodo-backoffice-darkmoon-theme", + "name": "combodo-backoffice-darkmoon-theme", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:23:17", + "installed": "2025-11-10 10:23:17", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "43", + "parent_id": "43", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "49", + "id": "49", + "1": "combodo-backoffice-fullmoon-high-contrast-theme", + "name": "combodo-backoffice-fullmoon-high-contrast-theme", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:23:17", + "installed": "2025-11-10 10:23:17", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "43", + "parent_id": "43", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "50", + "id": "50", + "1": "combodo-backoffice-fullmoon-protanopia-deuteranopia-theme", + "name": "combodo-backoffice-fullmoon-protanopia-deuteranopia-theme", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:23:17", + "installed": "2025-11-10 10:23:17", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "43", + "parent_id": "43", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "51", + "id": "51", + "1": "combodo-backoffice-fullmoon-tritanopia-theme", + "name": "combodo-backoffice-fullmoon-tritanopia-theme", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:23:17", + "installed": "2025-11-10 10:23:17", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "43", + "parent_id": "43", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "52", + "id": "52", + "1": "itop-backup", + "name": "itop-backup", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:23:17", + "installed": "2025-11-10 10:23:17", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "43", + "parent_id": "43", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "53", + "id": "53", + "1": "itop-config", + "name": "itop-config", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:23:17", + "installed": "2025-11-10 10:23:17", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "43", + "parent_id": "43", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "54", + "id": "54", + "1": "itop-files-information", + "name": "itop-files-information", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:23:17", + "installed": "2025-11-10 10:23:17", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)", + "5": "43", + "parent_id": "43", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "55", + "id": "55", + "1": "itop-portal-base", + "name": "itop-portal-base", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:23:17", + "installed": "2025-11-10 10:23:17", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "43", + "parent_id": "43", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "56", + "id": "56", + "1": "itop-profiles-itil", + "name": "itop-profiles-itil", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:23:17", + "installed": "2025-11-10 10:23:17", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "43", + "parent_id": "43", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "57", + "id": "57", + "1": "itop-sla-computation", + "name": "itop-sla-computation", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:23:17", + "installed": "2025-11-10 10:23:17", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "43", + "parent_id": "43", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "58", + "id": "58", + "1": "itop-structure", + "name": "itop-structure", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:23:17", + "installed": "2025-11-10 10:23:17", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "43", + "parent_id": "43", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "59", + "id": "59", + "1": "itop-welcome-itil", + "name": "itop-welcome-itil", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:23:17", + "installed": "2025-11-10 10:23:17", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "43", + "parent_id": "43", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "60", + "id": "60", + "1": "itop-config-mgmt", + "name": "itop-config-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:23:17", + "installed": "2025-11-10 10:23:17", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/2.7.1", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/2.7.1", + "5": "43", + "parent_id": "43", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "61", + "id": "61", + "1": "itop-attachments", + "name": "itop-attachments", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:23:17", + "installed": "2025-11-10 10:23:17", + "4": "Done by the setup program\nOptional\nVisible (during the setup)", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)", + "5": "43", + "parent_id": "43", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "62", + "id": "62", + "1": "itop-tickets", + "name": "itop-tickets", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:23:17", + "installed": "2025-11-10 10:23:17", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/2.7.1", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/2.7.1", + "5": "43", + "parent_id": "43", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "63", + "id": "63", + "1": "combodo-db-tools", + "name": "combodo-db-tools", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:23:17", + "installed": "2025-11-10 10:23:17", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/3.0.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/3.0.0", + "5": "43", + "parent_id": "43", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "64", + "id": "64", + "1": "itop-core-update", + "name": "itop-core-update", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:23:17", + "installed": "2025-11-10 10:23:17", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-files-information\/2.7.0\nDepends on module: combodo-db-tools\/2.7.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-files-information\/2.7.0\nDepends on module: combodo-db-tools\/2.7.0", + "5": "43", + "parent_id": "43", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "65", + "id": "65", + "1": "itop-hub-connector", + "name": "itop-hub-connector", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:23:17", + "installed": "2025-11-10 10:23:17", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "5": "43", + "parent_id": "43", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "66", + "id": "66", + "1": "itop-oauth-client", + "name": "itop-oauth-client", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:23:17", + "installed": "2025-11-10 10:23:17", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-welcome-itil\/3.1.0,", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-welcome-itil\/3.1.0,", + "5": "43", + "parent_id": "43", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "67", + "id": "67", + "1": "itop-themes-compat", + "name": "itop-themes-compat", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:23:17", + "installed": "2025-11-10 10:23:17", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/3.1.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/3.1.0", + "5": "43", + "parent_id": "43", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "68", + "id": "68", + "1": "itop-datacenter-mgmt", + "name": "itop-datacenter-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:23:17", + "installed": "2025-11-10 10:23:17", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0", + "5": "43", + "parent_id": "43", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "69", + "id": "69", + "1": "itop-endusers-devices", + "name": "itop-endusers-devices", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:23:17", + "installed": "2025-11-10 10:23:17", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0", + "5": "43", + "parent_id": "43", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "70", + "id": "70", + "1": "itop-storage-mgmt", + "name": "itop-storage-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:23:17", + "installed": "2025-11-10 10:23:17", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "5": "43", + "parent_id": "43", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "71", + "id": "71", + "1": "itop-virtualization-mgmt", + "name": "itop-virtualization-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:23:17", + "installed": "2025-11-10 10:23:17", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "5": "43", + "parent_id": "43", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "72", + "id": "72", + "1": "itop-bridge-cmdb-ticket", + "name": "itop-bridge-cmdb-ticket", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:23:17", + "installed": "2025-11-10 10:23:17", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-tickets\/2.7.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-tickets\/2.7.0", + "5": "43", + "parent_id": "43", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "73", + "id": "73", + "1": "itop-bridge-virtualization-storage", + "name": "itop-bridge-virtualization-storage", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:23:17", + "installed": "2025-11-10 10:23:17", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-storage-mgmt\/2.2.0\nDepends on module: itop-virtualization-mgmt\/2.2.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-storage-mgmt\/2.2.0\nDepends on module: itop-virtualization-mgmt\/2.2.0", + "5": "43", + "parent_id": "43", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "74", + "id": "74", + "1": "itop-service-mgmt", + "name": "itop-service-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:23:17", + "installed": "2025-11-10 10:23:17", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-tickets\/2.0.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-tickets\/2.0.0", + "5": "43", + "parent_id": "43", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "75", + "id": "75", + "1": "itop-bridge-cmdb-services", + "name": "itop-bridge-cmdb-services", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:23:17", + "installed": "2025-11-10 10:23:17", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1", + "5": "43", + "parent_id": "43", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "76", + "id": "76", + "1": "itop-bridge-datacenter-mgmt-services", + "name": "itop-bridge-datacenter-mgmt-services", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:23:17", + "installed": "2025-11-10 10:23:17", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-datacenter-mgmt\/3.1.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-datacenter-mgmt\/3.1.0", + "5": "43", + "parent_id": "43", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "77", + "id": "77", + "1": "itop-bridge-endusers-devices-services", + "name": "itop-bridge-endusers-devices-services", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:23:17", + "installed": "2025-11-10 10:23:17", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-endusers-devices\/3.1.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-endusers-devices\/3.1.0", + "5": "43", + "parent_id": "43", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "78", + "id": "78", + "1": "itop-bridge-storage-mgmt-services", + "name": "itop-bridge-storage-mgmt-services", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:23:17", + "installed": "2025-11-10 10:23:17", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-storage-mgmt\/3.1.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-storage-mgmt\/3.1.0", + "5": "43", + "parent_id": "43", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "79", + "id": "79", + "1": "itop-bridge-virtualization-mgmt-services", + "name": "itop-bridge-virtualization-mgmt-services", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:23:17", + "installed": "2025-11-10 10:23:17", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-virtualization-mgmt\/3.1.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-virtualization-mgmt\/3.1.0", + "5": "43", + "parent_id": "43", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "80", + "id": "80", + "1": "itop-request-mgmt", + "name": "itop-request-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:23:17", + "installed": "2025-11-10 10:23:17", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-tickets\/2.4.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-tickets\/2.4.0", + "5": "43", + "parent_id": "43", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "81", + "id": "81", + "1": "itop-portal", + "name": "itop-portal", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:23:17", + "installed": "2025-11-10 10:23:17", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-portal-base\/2.7.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-portal-base\/2.7.0", + "5": "43", + "parent_id": "43", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "82", + "id": "82", + "1": "itop-change-mgmt", + "name": "itop-change-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:23:17", + "installed": "2025-11-10 10:23:17", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0\nDepends on module: itop-tickets\/2.0.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0\nDepends on module: itop-tickets\/2.0.0", + "5": "43", + "parent_id": "43", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "83", + "id": "83", + "1": "datamodel", + "name": "datamodel", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:25:21", + "installed": "2025-11-10 10:25:21", + "4": "{\"source_dir\":\"datamodels\\\/2.x\\\/\"}", + "comment": "{\"source_dir\":\"datamodels\\\/2.x\\\/\"}", + "5": "0", + "parent_id": "0", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "84", + "id": "84", + "1": "iTop", + "name": "iTop", + "2": "3.3.0-dev-svn", + "version": "3.3.0-dev-svn", + "3": "2025-11-10 10:25:21", + "installed": "2025-11-10 10:25:21", + "4": "Done by the setup program\nBuilt on $WCNOW$", + "comment": "Done by the setup program\nBuilt on $WCNOW$", + "5": "0", + "parent_id": "0", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "85", + "id": "85", + "1": "authent-cas", + "name": "authent-cas", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:25:21", + "installed": "2025-11-10 10:25:21", + "4": "Done by the setup program\nMandatory\nVisible (during the setup)", + "comment": "Done by the setup program\nMandatory\nVisible (during the setup)", + "5": "84", + "parent_id": "84", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "86", + "id": "86", + "1": "authent-external", + "name": "authent-external", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:25:21", + "installed": "2025-11-10 10:25:21", + "4": "Done by the setup program\nOptional\nVisible (during the setup)", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)", + "5": "84", + "parent_id": "84", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "87", + "id": "87", + "1": "authent-ldap", + "name": "authent-ldap", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:25:21", + "installed": "2025-11-10 10:25:21", + "4": "Done by the setup program\nOptional\nVisible (during the setup)", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)", + "5": "84", + "parent_id": "84", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "88", + "id": "88", + "1": "authent-local", + "name": "authent-local", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:25:21", + "installed": "2025-11-10 10:25:21", + "4": "Done by the setup program\nMandatory\nVisible (during the setup)", + "comment": "Done by the setup program\nMandatory\nVisible (during the setup)", + "5": "84", + "parent_id": "84", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "89", + "id": "89", + "1": "combodo-backoffice-darkmoon-theme", + "name": "combodo-backoffice-darkmoon-theme", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:25:21", + "installed": "2025-11-10 10:25:21", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "84", + "parent_id": "84", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "90", + "id": "90", + "1": "combodo-backoffice-fullmoon-high-contrast-theme", + "name": "combodo-backoffice-fullmoon-high-contrast-theme", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:25:21", + "installed": "2025-11-10 10:25:21", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "84", + "parent_id": "84", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "91", + "id": "91", + "1": "combodo-backoffice-fullmoon-protanopia-deuteranopia-theme", + "name": "combodo-backoffice-fullmoon-protanopia-deuteranopia-theme", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:25:21", + "installed": "2025-11-10 10:25:21", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "84", + "parent_id": "84", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "92", + "id": "92", + "1": "combodo-backoffice-fullmoon-tritanopia-theme", + "name": "combodo-backoffice-fullmoon-tritanopia-theme", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:25:21", + "installed": "2025-11-10 10:25:21", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "84", + "parent_id": "84", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "93", + "id": "93", + "1": "itop-backup", + "name": "itop-backup", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:25:21", + "installed": "2025-11-10 10:25:21", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "84", + "parent_id": "84", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "94", + "id": "94", + "1": "itop-config", + "name": "itop-config", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:25:21", + "installed": "2025-11-10 10:25:21", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "84", + "parent_id": "84", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "95", + "id": "95", + "1": "itop-files-information", + "name": "itop-files-information", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:25:21", + "installed": "2025-11-10 10:25:21", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)", + "5": "84", + "parent_id": "84", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "96", + "id": "96", + "1": "itop-portal-base", + "name": "itop-portal-base", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:25:21", + "installed": "2025-11-10 10:25:21", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "84", + "parent_id": "84", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "97", + "id": "97", + "1": "itop-profiles-itil", + "name": "itop-profiles-itil", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:25:21", + "installed": "2025-11-10 10:25:21", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "84", + "parent_id": "84", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "98", + "id": "98", + "1": "itop-sla-computation", + "name": "itop-sla-computation", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:25:21", + "installed": "2025-11-10 10:25:21", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "84", + "parent_id": "84", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "99", + "id": "99", + "1": "itop-structure", + "name": "itop-structure", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:25:21", + "installed": "2025-11-10 10:25:21", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "84", + "parent_id": "84", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "100", + "id": "100", + "1": "itop-welcome-itil", + "name": "itop-welcome-itil", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:25:21", + "installed": "2025-11-10 10:25:21", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "84", + "parent_id": "84", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "101", + "id": "101", + "1": "itop-config-mgmt", + "name": "itop-config-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:25:21", + "installed": "2025-11-10 10:25:21", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/2.7.1", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/2.7.1", + "5": "84", + "parent_id": "84", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "102", + "id": "102", + "1": "itop-attachments", + "name": "itop-attachments", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:25:21", + "installed": "2025-11-10 10:25:21", + "4": "Done by the setup program\nOptional\nVisible (during the setup)", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)", + "5": "84", + "parent_id": "84", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "103", + "id": "103", + "1": "itop-tickets", + "name": "itop-tickets", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:25:21", + "installed": "2025-11-10 10:25:21", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/2.7.1", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/2.7.1", + "5": "84", + "parent_id": "84", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "104", + "id": "104", + "1": "combodo-db-tools", + "name": "combodo-db-tools", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:25:21", + "installed": "2025-11-10 10:25:21", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/3.0.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/3.0.0", + "5": "84", + "parent_id": "84", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "105", + "id": "105", + "1": "itop-core-update", + "name": "itop-core-update", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:25:21", + "installed": "2025-11-10 10:25:21", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-files-information\/2.7.0\nDepends on module: combodo-db-tools\/2.7.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-files-information\/2.7.0\nDepends on module: combodo-db-tools\/2.7.0", + "5": "84", + "parent_id": "84", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "106", + "id": "106", + "1": "itop-hub-connector", + "name": "itop-hub-connector", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:25:21", + "installed": "2025-11-10 10:25:21", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "5": "84", + "parent_id": "84", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "107", + "id": "107", + "1": "itop-oauth-client", + "name": "itop-oauth-client", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:25:21", + "installed": "2025-11-10 10:25:21", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-welcome-itil\/3.1.0,", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-welcome-itil\/3.1.0,", + "5": "84", + "parent_id": "84", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "108", + "id": "108", + "1": "itop-themes-compat", + "name": "itop-themes-compat", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:25:21", + "installed": "2025-11-10 10:25:21", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/3.1.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/3.1.0", + "5": "84", + "parent_id": "84", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "109", + "id": "109", + "1": "itop-datacenter-mgmt", + "name": "itop-datacenter-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:25:21", + "installed": "2025-11-10 10:25:21", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0", + "5": "84", + "parent_id": "84", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "110", + "id": "110", + "1": "itop-endusers-devices", + "name": "itop-endusers-devices", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:25:21", + "installed": "2025-11-10 10:25:21", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0", + "5": "84", + "parent_id": "84", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "111", + "id": "111", + "1": "itop-storage-mgmt", + "name": "itop-storage-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:25:21", + "installed": "2025-11-10 10:25:21", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "5": "84", + "parent_id": "84", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "112", + "id": "112", + "1": "itop-virtualization-mgmt", + "name": "itop-virtualization-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:25:21", + "installed": "2025-11-10 10:25:21", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "5": "84", + "parent_id": "84", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "113", + "id": "113", + "1": "itop-bridge-cmdb-ticket", + "name": "itop-bridge-cmdb-ticket", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:25:21", + "installed": "2025-11-10 10:25:21", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-tickets\/2.7.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-tickets\/2.7.0", + "5": "84", + "parent_id": "84", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "114", + "id": "114", + "1": "itop-bridge-virtualization-storage", + "name": "itop-bridge-virtualization-storage", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:25:21", + "installed": "2025-11-10 10:25:21", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-storage-mgmt\/2.2.0\nDepends on module: itop-virtualization-mgmt\/2.2.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-storage-mgmt\/2.2.0\nDepends on module: itop-virtualization-mgmt\/2.2.0", + "5": "84", + "parent_id": "84", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "115", + "id": "115", + "1": "itop-service-mgmt", + "name": "itop-service-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:25:21", + "installed": "2025-11-10 10:25:21", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-tickets\/2.0.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-tickets\/2.0.0", + "5": "84", + "parent_id": "84", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "116", + "id": "116", + "1": "itop-bridge-cmdb-services", + "name": "itop-bridge-cmdb-services", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:25:21", + "installed": "2025-11-10 10:25:21", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1", + "5": "84", + "parent_id": "84", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "117", + "id": "117", + "1": "itop-bridge-datacenter-mgmt-services", + "name": "itop-bridge-datacenter-mgmt-services", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:25:21", + "installed": "2025-11-10 10:25:21", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-datacenter-mgmt\/3.1.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-datacenter-mgmt\/3.1.0", + "5": "84", + "parent_id": "84", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "118", + "id": "118", + "1": "itop-bridge-endusers-devices-services", + "name": "itop-bridge-endusers-devices-services", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:25:21", + "installed": "2025-11-10 10:25:21", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-endusers-devices\/3.1.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-endusers-devices\/3.1.0", + "5": "84", + "parent_id": "84", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "119", + "id": "119", + "1": "itop-bridge-storage-mgmt-services", + "name": "itop-bridge-storage-mgmt-services", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:25:21", + "installed": "2025-11-10 10:25:21", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-storage-mgmt\/3.1.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-storage-mgmt\/3.1.0", + "5": "84", + "parent_id": "84", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "120", + "id": "120", + "1": "itop-bridge-virtualization-mgmt-services", + "name": "itop-bridge-virtualization-mgmt-services", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:25:21", + "installed": "2025-11-10 10:25:21", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-virtualization-mgmt\/3.1.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-virtualization-mgmt\/3.1.0", + "5": "84", + "parent_id": "84", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "121", + "id": "121", + "1": "itop-request-mgmt", + "name": "itop-request-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:25:21", + "installed": "2025-11-10 10:25:21", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-tickets\/2.4.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-tickets\/2.4.0", + "5": "84", + "parent_id": "84", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "122", + "id": "122", + "1": "itop-portal", + "name": "itop-portal", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:25:21", + "installed": "2025-11-10 10:25:21", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-portal-base\/2.7.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-portal-base\/2.7.0", + "5": "84", + "parent_id": "84", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "123", + "id": "123", + "1": "itop-change-mgmt", + "name": "itop-change-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:25:21", + "installed": "2025-11-10 10:25:21", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0\nDepends on module: itop-tickets\/2.0.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0\nDepends on module: itop-tickets\/2.0.0", + "5": "84", + "parent_id": "84", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "124", + "id": "124", + "1": "datamodel", + "name": "datamodel", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:35:39", + "installed": "2025-11-10 10:35:39", + "4": "{\"source_dir\":\"datamodels\\\/2.x\\\/\"}", + "comment": "{\"source_dir\":\"datamodels\\\/2.x\\\/\"}", + "5": "0", + "parent_id": "0", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "125", + "id": "125", + "1": "iTop", + "name": "iTop", + "2": "3.3.0-dev-svn", + "version": "3.3.0-dev-svn", + "3": "2025-11-10 10:35:39", + "installed": "2025-11-10 10:35:39", + "4": "Done by the setup program\nBuilt on $WCNOW$", + "comment": "Done by the setup program\nBuilt on $WCNOW$", + "5": "0", + "parent_id": "0", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "126", + "id": "126", + "1": "authent-cas", + "name": "authent-cas", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:35:39", + "installed": "2025-11-10 10:35:39", + "4": "Done by the setup program\nMandatory\nVisible (during the setup)", + "comment": "Done by the setup program\nMandatory\nVisible (during the setup)", + "5": "125", + "parent_id": "125", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "127", + "id": "127", + "1": "authent-external", + "name": "authent-external", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:35:39", + "installed": "2025-11-10 10:35:39", + "4": "Done by the setup program\nOptional\nVisible (during the setup)", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)", + "5": "125", + "parent_id": "125", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "128", + "id": "128", + "1": "authent-ldap", + "name": "authent-ldap", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:35:39", + "installed": "2025-11-10 10:35:39", + "4": "Done by the setup program\nOptional\nVisible (during the setup)", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)", + "5": "125", + "parent_id": "125", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "129", + "id": "129", + "1": "authent-local", + "name": "authent-local", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:35:39", + "installed": "2025-11-10 10:35:39", + "4": "Done by the setup program\nMandatory\nVisible (during the setup)", + "comment": "Done by the setup program\nMandatory\nVisible (during the setup)", + "5": "125", + "parent_id": "125", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "130", + "id": "130", + "1": "combodo-backoffice-darkmoon-theme", + "name": "combodo-backoffice-darkmoon-theme", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:35:39", + "installed": "2025-11-10 10:35:39", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "125", + "parent_id": "125", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "131", + "id": "131", + "1": "combodo-backoffice-fullmoon-high-contrast-theme", + "name": "combodo-backoffice-fullmoon-high-contrast-theme", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:35:39", + "installed": "2025-11-10 10:35:39", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "125", + "parent_id": "125", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "132", + "id": "132", + "1": "combodo-backoffice-fullmoon-protanopia-deuteranopia-theme", + "name": "combodo-backoffice-fullmoon-protanopia-deuteranopia-theme", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:35:39", + "installed": "2025-11-10 10:35:39", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "125", + "parent_id": "125", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "133", + "id": "133", + "1": "combodo-backoffice-fullmoon-tritanopia-theme", + "name": "combodo-backoffice-fullmoon-tritanopia-theme", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:35:39", + "installed": "2025-11-10 10:35:39", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "125", + "parent_id": "125", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "134", + "id": "134", + "1": "itop-backup", + "name": "itop-backup", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:35:39", + "installed": "2025-11-10 10:35:39", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "125", + "parent_id": "125", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "135", + "id": "135", + "1": "itop-config", + "name": "itop-config", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:35:39", + "installed": "2025-11-10 10:35:39", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "125", + "parent_id": "125", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "136", + "id": "136", + "1": "itop-files-information", + "name": "itop-files-information", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:35:39", + "installed": "2025-11-10 10:35:39", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)", + "5": "125", + "parent_id": "125", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "137", + "id": "137", + "1": "itop-portal-base", + "name": "itop-portal-base", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:35:39", + "installed": "2025-11-10 10:35:39", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "125", + "parent_id": "125", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "138", + "id": "138", + "1": "itop-profiles-itil", + "name": "itop-profiles-itil", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:35:39", + "installed": "2025-11-10 10:35:39", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "125", + "parent_id": "125", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "139", + "id": "139", + "1": "itop-sla-computation", + "name": "itop-sla-computation", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:35:39", + "installed": "2025-11-10 10:35:39", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "125", + "parent_id": "125", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "140", + "id": "140", + "1": "itop-structure", + "name": "itop-structure", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:35:39", + "installed": "2025-11-10 10:35:39", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "125", + "parent_id": "125", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "141", + "id": "141", + "1": "itop-welcome-itil", + "name": "itop-welcome-itil", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:35:39", + "installed": "2025-11-10 10:35:39", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "125", + "parent_id": "125", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "142", + "id": "142", + "1": "itop-config-mgmt", + "name": "itop-config-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:35:39", + "installed": "2025-11-10 10:35:39", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/2.7.1", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/2.7.1", + "5": "125", + "parent_id": "125", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "143", + "id": "143", + "1": "itop-attachments", + "name": "itop-attachments", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:35:39", + "installed": "2025-11-10 10:35:39", + "4": "Done by the setup program\nOptional\nVisible (during the setup)", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)", + "5": "125", + "parent_id": "125", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "144", + "id": "144", + "1": "itop-tickets", + "name": "itop-tickets", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:35:39", + "installed": "2025-11-10 10:35:39", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/2.7.1", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/2.7.1", + "5": "125", + "parent_id": "125", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "145", + "id": "145", + "1": "combodo-db-tools", + "name": "combodo-db-tools", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:35:39", + "installed": "2025-11-10 10:35:39", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/3.0.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/3.0.0", + "5": "125", + "parent_id": "125", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "146", + "id": "146", + "1": "itop-core-update", + "name": "itop-core-update", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:35:39", + "installed": "2025-11-10 10:35:39", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-files-information\/2.7.0\nDepends on module: combodo-db-tools\/2.7.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-files-information\/2.7.0\nDepends on module: combodo-db-tools\/2.7.0", + "5": "125", + "parent_id": "125", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "147", + "id": "147", + "1": "itop-hub-connector", + "name": "itop-hub-connector", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:35:39", + "installed": "2025-11-10 10:35:39", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "5": "125", + "parent_id": "125", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "148", + "id": "148", + "1": "itop-oauth-client", + "name": "itop-oauth-client", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:35:39", + "installed": "2025-11-10 10:35:39", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-welcome-itil\/3.1.0,", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-welcome-itil\/3.1.0,", + "5": "125", + "parent_id": "125", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "149", + "id": "149", + "1": "itop-themes-compat", + "name": "itop-themes-compat", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:35:39", + "installed": "2025-11-10 10:35:39", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/3.1.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/3.1.0", + "5": "125", + "parent_id": "125", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "150", + "id": "150", + "1": "itop-datacenter-mgmt", + "name": "itop-datacenter-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:35:39", + "installed": "2025-11-10 10:35:39", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0", + "5": "125", + "parent_id": "125", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "151", + "id": "151", + "1": "itop-endusers-devices", + "name": "itop-endusers-devices", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:35:39", + "installed": "2025-11-10 10:35:39", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0", + "5": "125", + "parent_id": "125", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "152", + "id": "152", + "1": "itop-storage-mgmt", + "name": "itop-storage-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:35:39", + "installed": "2025-11-10 10:35:39", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "5": "125", + "parent_id": "125", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "153", + "id": "153", + "1": "itop-virtualization-mgmt", + "name": "itop-virtualization-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:35:39", + "installed": "2025-11-10 10:35:39", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "5": "125", + "parent_id": "125", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "154", + "id": "154", + "1": "itop-bridge-cmdb-ticket", + "name": "itop-bridge-cmdb-ticket", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:35:39", + "installed": "2025-11-10 10:35:39", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-tickets\/2.7.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-tickets\/2.7.0", + "5": "125", + "parent_id": "125", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "155", + "id": "155", + "1": "itop-bridge-virtualization-storage", + "name": "itop-bridge-virtualization-storage", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:35:39", + "installed": "2025-11-10 10:35:39", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-storage-mgmt\/2.2.0\nDepends on module: itop-virtualization-mgmt\/2.2.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-storage-mgmt\/2.2.0\nDepends on module: itop-virtualization-mgmt\/2.2.0", + "5": "125", + "parent_id": "125", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "156", + "id": "156", + "1": "itop-service-mgmt", + "name": "itop-service-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:35:39", + "installed": "2025-11-10 10:35:39", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-tickets\/2.0.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-tickets\/2.0.0", + "5": "125", + "parent_id": "125", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "157", + "id": "157", + "1": "itop-bridge-cmdb-services", + "name": "itop-bridge-cmdb-services", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:35:39", + "installed": "2025-11-10 10:35:39", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1", + "5": "125", + "parent_id": "125", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "158", + "id": "158", + "1": "itop-bridge-datacenter-mgmt-services", + "name": "itop-bridge-datacenter-mgmt-services", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:35:39", + "installed": "2025-11-10 10:35:39", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-datacenter-mgmt\/3.1.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-datacenter-mgmt\/3.1.0", + "5": "125", + "parent_id": "125", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "159", + "id": "159", + "1": "itop-bridge-endusers-devices-services", + "name": "itop-bridge-endusers-devices-services", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:35:39", + "installed": "2025-11-10 10:35:39", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-endusers-devices\/3.1.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-endusers-devices\/3.1.0", + "5": "125", + "parent_id": "125", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "160", + "id": "160", + "1": "itop-bridge-storage-mgmt-services", + "name": "itop-bridge-storage-mgmt-services", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:35:39", + "installed": "2025-11-10 10:35:39", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-storage-mgmt\/3.1.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-storage-mgmt\/3.1.0", + "5": "125", + "parent_id": "125", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "161", + "id": "161", + "1": "itop-bridge-virtualization-mgmt-services", + "name": "itop-bridge-virtualization-mgmt-services", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:35:39", + "installed": "2025-11-10 10:35:39", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-virtualization-mgmt\/3.1.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-virtualization-mgmt\/3.1.0", + "5": "125", + "parent_id": "125", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "162", + "id": "162", + "1": "itop-request-mgmt", + "name": "itop-request-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:35:39", + "installed": "2025-11-10 10:35:39", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-tickets\/2.4.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-tickets\/2.4.0", + "5": "125", + "parent_id": "125", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "163", + "id": "163", + "1": "itop-portal", + "name": "itop-portal", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:35:39", + "installed": "2025-11-10 10:35:39", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-portal-base\/2.7.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-portal-base\/2.7.0", + "5": "125", + "parent_id": "125", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "164", + "id": "164", + "1": "itop-change-mgmt", + "name": "itop-change-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:35:39", + "installed": "2025-11-10 10:35:39", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0\nDepends on module: itop-tickets\/2.0.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0\nDepends on module: itop-tickets\/2.0.0", + "5": "125", + "parent_id": "125", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "165", + "id": "165", + "1": "datamodel", + "name": "datamodel", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:40:45", + "installed": "2025-11-10 10:40:45", + "4": "{\"source_dir\":\"datamodels\\\/2.x\\\/\"}", + "comment": "{\"source_dir\":\"datamodels\\\/2.x\\\/\"}", + "5": "0", + "parent_id": "0", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "166", + "id": "166", + "1": "iTop", + "name": "iTop", + "2": "3.3.0-dev-svn", + "version": "3.3.0-dev-svn", + "3": "2025-11-10 10:40:45", + "installed": "2025-11-10 10:40:45", + "4": "Done by the setup program\nBuilt on $WCNOW$", + "comment": "Done by the setup program\nBuilt on $WCNOW$", + "5": "0", + "parent_id": "0", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "167", + "id": "167", + "1": "authent-cas", + "name": "authent-cas", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:40:45", + "installed": "2025-11-10 10:40:45", + "4": "Done by the setup program\nMandatory\nVisible (during the setup)", + "comment": "Done by the setup program\nMandatory\nVisible (during the setup)", + "5": "166", + "parent_id": "166", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "168", + "id": "168", + "1": "authent-external", + "name": "authent-external", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:40:45", + "installed": "2025-11-10 10:40:45", + "4": "Done by the setup program\nOptional\nVisible (during the setup)", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)", + "5": "166", + "parent_id": "166", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "169", + "id": "169", + "1": "authent-ldap", + "name": "authent-ldap", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:40:45", + "installed": "2025-11-10 10:40:45", + "4": "Done by the setup program\nOptional\nVisible (during the setup)", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)", + "5": "166", + "parent_id": "166", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "170", + "id": "170", + "1": "authent-local", + "name": "authent-local", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:40:45", + "installed": "2025-11-10 10:40:45", + "4": "Done by the setup program\nMandatory\nVisible (during the setup)", + "comment": "Done by the setup program\nMandatory\nVisible (during the setup)", + "5": "166", + "parent_id": "166", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "171", + "id": "171", + "1": "combodo-backoffice-darkmoon-theme", + "name": "combodo-backoffice-darkmoon-theme", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:40:45", + "installed": "2025-11-10 10:40:45", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "166", + "parent_id": "166", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "172", + "id": "172", + "1": "combodo-backoffice-fullmoon-high-contrast-theme", + "name": "combodo-backoffice-fullmoon-high-contrast-theme", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:40:45", + "installed": "2025-11-10 10:40:45", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "166", + "parent_id": "166", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "173", + "id": "173", + "1": "combodo-backoffice-fullmoon-protanopia-deuteranopia-theme", + "name": "combodo-backoffice-fullmoon-protanopia-deuteranopia-theme", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:40:45", + "installed": "2025-11-10 10:40:45", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "166", + "parent_id": "166", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "174", + "id": "174", + "1": "combodo-backoffice-fullmoon-tritanopia-theme", + "name": "combodo-backoffice-fullmoon-tritanopia-theme", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:40:45", + "installed": "2025-11-10 10:40:45", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "166", + "parent_id": "166", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "175", + "id": "175", + "1": "itop-backup", + "name": "itop-backup", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:40:45", + "installed": "2025-11-10 10:40:45", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "166", + "parent_id": "166", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "176", + "id": "176", + "1": "itop-config", + "name": "itop-config", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:40:45", + "installed": "2025-11-10 10:40:45", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "166", + "parent_id": "166", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "177", + "id": "177", + "1": "itop-files-information", + "name": "itop-files-information", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:40:45", + "installed": "2025-11-10 10:40:45", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)", + "5": "166", + "parent_id": "166", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "178", + "id": "178", + "1": "itop-portal-base", + "name": "itop-portal-base", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:40:45", + "installed": "2025-11-10 10:40:45", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "166", + "parent_id": "166", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "179", + "id": "179", + "1": "itop-profiles-itil", + "name": "itop-profiles-itil", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:40:45", + "installed": "2025-11-10 10:40:45", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "166", + "parent_id": "166", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "180", + "id": "180", + "1": "itop-sla-computation", + "name": "itop-sla-computation", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:40:45", + "installed": "2025-11-10 10:40:45", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "166", + "parent_id": "166", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "181", + "id": "181", + "1": "itop-structure", + "name": "itop-structure", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:40:45", + "installed": "2025-11-10 10:40:45", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "166", + "parent_id": "166", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "182", + "id": "182", + "1": "itop-welcome-itil", + "name": "itop-welcome-itil", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:40:45", + "installed": "2025-11-10 10:40:45", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "166", + "parent_id": "166", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "183", + "id": "183", + "1": "itop-config-mgmt", + "name": "itop-config-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:40:45", + "installed": "2025-11-10 10:40:45", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/2.7.1", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/2.7.1", + "5": "166", + "parent_id": "166", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "184", + "id": "184", + "1": "itop-attachments", + "name": "itop-attachments", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:40:45", + "installed": "2025-11-10 10:40:45", + "4": "Done by the setup program\nOptional\nVisible (during the setup)", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)", + "5": "166", + "parent_id": "166", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "185", + "id": "185", + "1": "itop-tickets", + "name": "itop-tickets", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:40:45", + "installed": "2025-11-10 10:40:45", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/2.7.1", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/2.7.1", + "5": "166", + "parent_id": "166", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "186", + "id": "186", + "1": "combodo-db-tools", + "name": "combodo-db-tools", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:40:45", + "installed": "2025-11-10 10:40:45", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/3.0.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/3.0.0", + "5": "166", + "parent_id": "166", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "187", + "id": "187", + "1": "itop-core-update", + "name": "itop-core-update", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:40:45", + "installed": "2025-11-10 10:40:45", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-files-information\/2.7.0\nDepends on module: combodo-db-tools\/2.7.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-files-information\/2.7.0\nDepends on module: combodo-db-tools\/2.7.0", + "5": "166", + "parent_id": "166", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "188", + "id": "188", + "1": "itop-hub-connector", + "name": "itop-hub-connector", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:40:45", + "installed": "2025-11-10 10:40:45", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "5": "166", + "parent_id": "166", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "189", + "id": "189", + "1": "itop-oauth-client", + "name": "itop-oauth-client", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:40:45", + "installed": "2025-11-10 10:40:45", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-welcome-itil\/3.1.0,", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-welcome-itil\/3.1.0,", + "5": "166", + "parent_id": "166", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "190", + "id": "190", + "1": "itop-themes-compat", + "name": "itop-themes-compat", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:40:45", + "installed": "2025-11-10 10:40:45", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/3.1.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/3.1.0", + "5": "166", + "parent_id": "166", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "191", + "id": "191", + "1": "itop-datacenter-mgmt", + "name": "itop-datacenter-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:40:45", + "installed": "2025-11-10 10:40:45", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0", + "5": "166", + "parent_id": "166", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "192", + "id": "192", + "1": "itop-endusers-devices", + "name": "itop-endusers-devices", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:40:45", + "installed": "2025-11-10 10:40:45", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0", + "5": "166", + "parent_id": "166", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "193", + "id": "193", + "1": "itop-storage-mgmt", + "name": "itop-storage-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:40:45", + "installed": "2025-11-10 10:40:45", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "5": "166", + "parent_id": "166", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "194", + "id": "194", + "1": "itop-virtualization-mgmt", + "name": "itop-virtualization-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:40:45", + "installed": "2025-11-10 10:40:45", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "5": "166", + "parent_id": "166", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "195", + "id": "195", + "1": "itop-bridge-cmdb-ticket", + "name": "itop-bridge-cmdb-ticket", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:40:45", + "installed": "2025-11-10 10:40:45", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-tickets\/2.7.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-tickets\/2.7.0", + "5": "166", + "parent_id": "166", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "196", + "id": "196", + "1": "itop-bridge-virtualization-storage", + "name": "itop-bridge-virtualization-storage", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:40:45", + "installed": "2025-11-10 10:40:45", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-storage-mgmt\/2.2.0\nDepends on module: itop-virtualization-mgmt\/2.2.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-storage-mgmt\/2.2.0\nDepends on module: itop-virtualization-mgmt\/2.2.0", + "5": "166", + "parent_id": "166", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "197", + "id": "197", + "1": "itop-service-mgmt", + "name": "itop-service-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:40:45", + "installed": "2025-11-10 10:40:45", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-tickets\/2.0.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-tickets\/2.0.0", + "5": "166", + "parent_id": "166", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "198", + "id": "198", + "1": "itop-bridge-cmdb-services", + "name": "itop-bridge-cmdb-services", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:40:45", + "installed": "2025-11-10 10:40:45", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1", + "5": "166", + "parent_id": "166", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "199", + "id": "199", + "1": "itop-bridge-datacenter-mgmt-services", + "name": "itop-bridge-datacenter-mgmt-services", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:40:45", + "installed": "2025-11-10 10:40:45", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-datacenter-mgmt\/3.1.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-datacenter-mgmt\/3.1.0", + "5": "166", + "parent_id": "166", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "200", + "id": "200", + "1": "itop-bridge-endusers-devices-services", + "name": "itop-bridge-endusers-devices-services", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:40:45", + "installed": "2025-11-10 10:40:45", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-endusers-devices\/3.1.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-endusers-devices\/3.1.0", + "5": "166", + "parent_id": "166", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "201", + "id": "201", + "1": "itop-bridge-storage-mgmt-services", + "name": "itop-bridge-storage-mgmt-services", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:40:45", + "installed": "2025-11-10 10:40:45", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-storage-mgmt\/3.1.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-storage-mgmt\/3.1.0", + "5": "166", + "parent_id": "166", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "202", + "id": "202", + "1": "itop-bridge-virtualization-mgmt-services", + "name": "itop-bridge-virtualization-mgmt-services", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:40:45", + "installed": "2025-11-10 10:40:45", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-virtualization-mgmt\/3.1.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-virtualization-mgmt\/3.1.0", + "5": "166", + "parent_id": "166", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "203", + "id": "203", + "1": "itop-request-mgmt", + "name": "itop-request-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:40:45", + "installed": "2025-11-10 10:40:45", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-tickets\/2.4.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-tickets\/2.4.0", + "5": "166", + "parent_id": "166", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "204", + "id": "204", + "1": "itop-portal", + "name": "itop-portal", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:40:45", + "installed": "2025-11-10 10:40:45", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-portal-base\/2.7.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-portal-base\/2.7.0", + "5": "166", + "parent_id": "166", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "205", + "id": "205", + "1": "itop-change-mgmt", + "name": "itop-change-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:40:45", + "installed": "2025-11-10 10:40:45", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0\nDepends on module: itop-tickets\/2.0.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0\nDepends on module: itop-tickets\/2.0.0", + "5": "166", + "parent_id": "166", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "206", + "id": "206", + "1": "datamodel", + "name": "datamodel", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:43:58", + "installed": "2025-11-10 10:43:58", + "4": "{\"source_dir\":\"datamodels\\\/2.x\\\/\"}", + "comment": "{\"source_dir\":\"datamodels\\\/2.x\\\/\"}", + "5": "0", + "parent_id": "0", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "207", + "id": "207", + "1": "iTop", + "name": "iTop", + "2": "3.3.0-dev-svn", + "version": "3.3.0-dev-svn", + "3": "2025-11-10 10:43:58", + "installed": "2025-11-10 10:43:58", + "4": "Done by the setup program\nBuilt on $WCNOW$", + "comment": "Done by the setup program\nBuilt on $WCNOW$", + "5": "0", + "parent_id": "0", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "208", + "id": "208", + "1": "authent-cas", + "name": "authent-cas", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:43:58", + "installed": "2025-11-10 10:43:58", + "4": "Done by the setup program\nMandatory\nVisible (during the setup)", + "comment": "Done by the setup program\nMandatory\nVisible (during the setup)", + "5": "207", + "parent_id": "207", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "209", + "id": "209", + "1": "authent-external", + "name": "authent-external", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:43:58", + "installed": "2025-11-10 10:43:58", + "4": "Done by the setup program\nOptional\nVisible (during the setup)", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)", + "5": "207", + "parent_id": "207", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "210", + "id": "210", + "1": "authent-ldap", + "name": "authent-ldap", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:43:58", + "installed": "2025-11-10 10:43:58", + "4": "Done by the setup program\nOptional\nVisible (during the setup)", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)", + "5": "207", + "parent_id": "207", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "211", + "id": "211", + "1": "authent-local", + "name": "authent-local", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:43:58", + "installed": "2025-11-10 10:43:58", + "4": "Done by the setup program\nMandatory\nVisible (during the setup)", + "comment": "Done by the setup program\nMandatory\nVisible (during the setup)", + "5": "207", + "parent_id": "207", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "212", + "id": "212", + "1": "combodo-backoffice-darkmoon-theme", + "name": "combodo-backoffice-darkmoon-theme", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:43:58", + "installed": "2025-11-10 10:43:58", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "207", + "parent_id": "207", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "213", + "id": "213", + "1": "combodo-backoffice-fullmoon-high-contrast-theme", + "name": "combodo-backoffice-fullmoon-high-contrast-theme", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:43:58", + "installed": "2025-11-10 10:43:58", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "207", + "parent_id": "207", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "214", + "id": "214", + "1": "combodo-backoffice-fullmoon-protanopia-deuteranopia-theme", + "name": "combodo-backoffice-fullmoon-protanopia-deuteranopia-theme", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:43:58", + "installed": "2025-11-10 10:43:58", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "207", + "parent_id": "207", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "215", + "id": "215", + "1": "combodo-backoffice-fullmoon-tritanopia-theme", + "name": "combodo-backoffice-fullmoon-tritanopia-theme", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:43:58", + "installed": "2025-11-10 10:43:58", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "207", + "parent_id": "207", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "216", + "id": "216", + "1": "itop-backup", + "name": "itop-backup", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:43:58", + "installed": "2025-11-10 10:43:58", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "207", + "parent_id": "207", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "217", + "id": "217", + "1": "itop-config", + "name": "itop-config", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:43:58", + "installed": "2025-11-10 10:43:58", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "207", + "parent_id": "207", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "218", + "id": "218", + "1": "itop-files-information", + "name": "itop-files-information", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:43:58", + "installed": "2025-11-10 10:43:58", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)", + "5": "207", + "parent_id": "207", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "219", + "id": "219", + "1": "itop-portal-base", + "name": "itop-portal-base", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:43:58", + "installed": "2025-11-10 10:43:58", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "207", + "parent_id": "207", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "220", + "id": "220", + "1": "itop-profiles-itil", + "name": "itop-profiles-itil", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:43:58", + "installed": "2025-11-10 10:43:58", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "207", + "parent_id": "207", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "221", + "id": "221", + "1": "itop-sla-computation", + "name": "itop-sla-computation", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:43:58", + "installed": "2025-11-10 10:43:58", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "207", + "parent_id": "207", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "222", + "id": "222", + "1": "itop-structure", + "name": "itop-structure", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:43:58", + "installed": "2025-11-10 10:43:58", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "207", + "parent_id": "207", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "223", + "id": "223", + "1": "itop-welcome-itil", + "name": "itop-welcome-itil", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:43:58", + "installed": "2025-11-10 10:43:58", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "207", + "parent_id": "207", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "224", + "id": "224", + "1": "itop-config-mgmt", + "name": "itop-config-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:43:58", + "installed": "2025-11-10 10:43:58", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/2.7.1", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/2.7.1", + "5": "207", + "parent_id": "207", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "225", + "id": "225", + "1": "itop-attachments", + "name": "itop-attachments", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:43:58", + "installed": "2025-11-10 10:43:58", + "4": "Done by the setup program\nOptional\nVisible (during the setup)", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)", + "5": "207", + "parent_id": "207", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "226", + "id": "226", + "1": "itop-tickets", + "name": "itop-tickets", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:43:58", + "installed": "2025-11-10 10:43:58", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/2.7.1", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/2.7.1", + "5": "207", + "parent_id": "207", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "227", + "id": "227", + "1": "combodo-db-tools", + "name": "combodo-db-tools", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:43:58", + "installed": "2025-11-10 10:43:58", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/3.0.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/3.0.0", + "5": "207", + "parent_id": "207", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "228", + "id": "228", + "1": "itop-core-update", + "name": "itop-core-update", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:43:58", + "installed": "2025-11-10 10:43:58", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-files-information\/2.7.0\nDepends on module: combodo-db-tools\/2.7.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-files-information\/2.7.0\nDepends on module: combodo-db-tools\/2.7.0", + "5": "207", + "parent_id": "207", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "229", + "id": "229", + "1": "itop-hub-connector", + "name": "itop-hub-connector", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:43:58", + "installed": "2025-11-10 10:43:58", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "5": "207", + "parent_id": "207", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "230", + "id": "230", + "1": "itop-oauth-client", + "name": "itop-oauth-client", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:43:58", + "installed": "2025-11-10 10:43:58", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-welcome-itil\/3.1.0,", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-welcome-itil\/3.1.0,", + "5": "207", + "parent_id": "207", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "231", + "id": "231", + "1": "itop-themes-compat", + "name": "itop-themes-compat", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:43:58", + "installed": "2025-11-10 10:43:58", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/3.1.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/3.1.0", + "5": "207", + "parent_id": "207", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "232", + "id": "232", + "1": "itop-datacenter-mgmt", + "name": "itop-datacenter-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:43:58", + "installed": "2025-11-10 10:43:58", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0", + "5": "207", + "parent_id": "207", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "233", + "id": "233", + "1": "itop-endusers-devices", + "name": "itop-endusers-devices", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:43:58", + "installed": "2025-11-10 10:43:58", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0", + "5": "207", + "parent_id": "207", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "234", + "id": "234", + "1": "itop-storage-mgmt", + "name": "itop-storage-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:43:58", + "installed": "2025-11-10 10:43:58", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "5": "207", + "parent_id": "207", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "235", + "id": "235", + "1": "itop-virtualization-mgmt", + "name": "itop-virtualization-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:43:58", + "installed": "2025-11-10 10:43:58", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "5": "207", + "parent_id": "207", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "236", + "id": "236", + "1": "itop-bridge-cmdb-ticket", + "name": "itop-bridge-cmdb-ticket", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:43:58", + "installed": "2025-11-10 10:43:58", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-tickets\/2.7.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-tickets\/2.7.0", + "5": "207", + "parent_id": "207", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "237", + "id": "237", + "1": "itop-bridge-virtualization-storage", + "name": "itop-bridge-virtualization-storage", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:43:58", + "installed": "2025-11-10 10:43:58", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-storage-mgmt\/2.2.0\nDepends on module: itop-virtualization-mgmt\/2.2.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-storage-mgmt\/2.2.0\nDepends on module: itop-virtualization-mgmt\/2.2.0", + "5": "207", + "parent_id": "207", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "238", + "id": "238", + "1": "itop-service-mgmt", + "name": "itop-service-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:43:58", + "installed": "2025-11-10 10:43:58", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-tickets\/2.0.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-tickets\/2.0.0", + "5": "207", + "parent_id": "207", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "239", + "id": "239", + "1": "itop-bridge-cmdb-services", + "name": "itop-bridge-cmdb-services", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:43:58", + "installed": "2025-11-10 10:43:58", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1", + "5": "207", + "parent_id": "207", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "240", + "id": "240", + "1": "itop-bridge-datacenter-mgmt-services", + "name": "itop-bridge-datacenter-mgmt-services", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:43:58", + "installed": "2025-11-10 10:43:58", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-datacenter-mgmt\/3.1.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-datacenter-mgmt\/3.1.0", + "5": "207", + "parent_id": "207", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "241", + "id": "241", + "1": "itop-bridge-endusers-devices-services", + "name": "itop-bridge-endusers-devices-services", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:43:58", + "installed": "2025-11-10 10:43:58", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-endusers-devices\/3.1.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-endusers-devices\/3.1.0", + "5": "207", + "parent_id": "207", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "242", + "id": "242", + "1": "itop-bridge-storage-mgmt-services", + "name": "itop-bridge-storage-mgmt-services", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:43:58", + "installed": "2025-11-10 10:43:58", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-storage-mgmt\/3.1.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-storage-mgmt\/3.1.0", + "5": "207", + "parent_id": "207", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "243", + "id": "243", + "1": "itop-bridge-virtualization-mgmt-services", + "name": "itop-bridge-virtualization-mgmt-services", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:43:58", + "installed": "2025-11-10 10:43:58", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-virtualization-mgmt\/3.1.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-virtualization-mgmt\/3.1.0", + "5": "207", + "parent_id": "207", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "244", + "id": "244", + "1": "itop-request-mgmt", + "name": "itop-request-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:43:58", + "installed": "2025-11-10 10:43:58", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-tickets\/2.4.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-tickets\/2.4.0", + "5": "207", + "parent_id": "207", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "245", + "id": "245", + "1": "itop-portal", + "name": "itop-portal", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:43:58", + "installed": "2025-11-10 10:43:58", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-portal-base\/2.7.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-portal-base\/2.7.0", + "5": "207", + "parent_id": "207", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "246", + "id": "246", + "1": "itop-change-mgmt", + "name": "itop-change-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 10:43:58", + "installed": "2025-11-10 10:43:58", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0\nDepends on module: itop-tickets\/2.0.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0\nDepends on module: itop-tickets\/2.0.0", + "5": "207", + "parent_id": "207", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "247", + "id": "247", + "1": "datamodel", + "name": "datamodel", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:43:55", + "installed": "2025-11-10 11:43:55", + "4": "{\"source_dir\":\"datamodels\\\/2.x\\\/\"}", + "comment": "{\"source_dir\":\"datamodels\\\/2.x\\\/\"}", + "5": "0", + "parent_id": "0", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "248", + "id": "248", + "1": "iTop", + "name": "iTop", + "2": "3.3.0-dev-svn", + "version": "3.3.0-dev-svn", + "3": "2025-11-10 11:43:55", + "installed": "2025-11-10 11:43:55", + "4": "Done by the setup program\nBuilt on $WCNOW$", + "comment": "Done by the setup program\nBuilt on $WCNOW$", + "5": "0", + "parent_id": "0", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "249", + "id": "249", + "1": "authent-cas", + "name": "authent-cas", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:43:55", + "installed": "2025-11-10 11:43:55", + "4": "Done by the setup program\nMandatory\nVisible (during the setup)", + "comment": "Done by the setup program\nMandatory\nVisible (during the setup)", + "5": "248", + "parent_id": "248", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "250", + "id": "250", + "1": "authent-external", + "name": "authent-external", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:43:55", + "installed": "2025-11-10 11:43:55", + "4": "Done by the setup program\nOptional\nVisible (during the setup)", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)", + "5": "248", + "parent_id": "248", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "251", + "id": "251", + "1": "authent-ldap", + "name": "authent-ldap", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:43:55", + "installed": "2025-11-10 11:43:55", + "4": "Done by the setup program\nOptional\nVisible (during the setup)", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)", + "5": "248", + "parent_id": "248", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "252", + "id": "252", + "1": "authent-local", + "name": "authent-local", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:43:55", + "installed": "2025-11-10 11:43:55", + "4": "Done by the setup program\nMandatory\nVisible (during the setup)", + "comment": "Done by the setup program\nMandatory\nVisible (during the setup)", + "5": "248", + "parent_id": "248", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "253", + "id": "253", + "1": "combodo-backoffice-darkmoon-theme", + "name": "combodo-backoffice-darkmoon-theme", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:43:55", + "installed": "2025-11-10 11:43:55", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "248", + "parent_id": "248", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "254", + "id": "254", + "1": "combodo-backoffice-fullmoon-high-contrast-theme", + "name": "combodo-backoffice-fullmoon-high-contrast-theme", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:43:55", + "installed": "2025-11-10 11:43:55", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "248", + "parent_id": "248", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "255", + "id": "255", + "1": "combodo-backoffice-fullmoon-protanopia-deuteranopia-theme", + "name": "combodo-backoffice-fullmoon-protanopia-deuteranopia-theme", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:43:55", + "installed": "2025-11-10 11:43:55", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "248", + "parent_id": "248", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "256", + "id": "256", + "1": "combodo-backoffice-fullmoon-tritanopia-theme", + "name": "combodo-backoffice-fullmoon-tritanopia-theme", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:43:55", + "installed": "2025-11-10 11:43:55", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "248", + "parent_id": "248", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "257", + "id": "257", + "1": "itop-backup", + "name": "itop-backup", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:43:55", + "installed": "2025-11-10 11:43:55", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "248", + "parent_id": "248", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "258", + "id": "258", + "1": "itop-config", + "name": "itop-config", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:43:55", + "installed": "2025-11-10 11:43:55", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "248", + "parent_id": "248", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "259", + "id": "259", + "1": "itop-files-information", + "name": "itop-files-information", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:43:55", + "installed": "2025-11-10 11:43:55", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)", + "5": "248", + "parent_id": "248", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "260", + "id": "260", + "1": "itop-portal-base", + "name": "itop-portal-base", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:43:55", + "installed": "2025-11-10 11:43:55", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "248", + "parent_id": "248", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "261", + "id": "261", + "1": "itop-profiles-itil", + "name": "itop-profiles-itil", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:43:55", + "installed": "2025-11-10 11:43:55", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "248", + "parent_id": "248", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "262", + "id": "262", + "1": "itop-sla-computation", + "name": "itop-sla-computation", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:43:55", + "installed": "2025-11-10 11:43:55", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "248", + "parent_id": "248", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "263", + "id": "263", + "1": "itop-structure", + "name": "itop-structure", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:43:55", + "installed": "2025-11-10 11:43:55", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "248", + "parent_id": "248", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "264", + "id": "264", + "1": "itop-welcome-itil", + "name": "itop-welcome-itil", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:43:55", + "installed": "2025-11-10 11:43:55", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "248", + "parent_id": "248", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "265", + "id": "265", + "1": "itop-config-mgmt", + "name": "itop-config-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:43:55", + "installed": "2025-11-10 11:43:55", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/2.7.1", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/2.7.1", + "5": "248", + "parent_id": "248", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "266", + "id": "266", + "1": "itop-attachments", + "name": "itop-attachments", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:43:55", + "installed": "2025-11-10 11:43:55", + "4": "Done by the setup program\nOptional\nVisible (during the setup)", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)", + "5": "248", + "parent_id": "248", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "267", + "id": "267", + "1": "itop-tickets", + "name": "itop-tickets", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:43:55", + "installed": "2025-11-10 11:43:55", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/2.7.1", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/2.7.1", + "5": "248", + "parent_id": "248", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "268", + "id": "268", + "1": "combodo-db-tools", + "name": "combodo-db-tools", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:43:55", + "installed": "2025-11-10 11:43:55", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/3.0.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/3.0.0", + "5": "248", + "parent_id": "248", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "269", + "id": "269", + "1": "itop-core-update", + "name": "itop-core-update", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:43:55", + "installed": "2025-11-10 11:43:55", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-files-information\/2.7.0\nDepends on module: combodo-db-tools\/2.7.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-files-information\/2.7.0\nDepends on module: combodo-db-tools\/2.7.0", + "5": "248", + "parent_id": "248", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "270", + "id": "270", + "1": "itop-hub-connector", + "name": "itop-hub-connector", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:43:55", + "installed": "2025-11-10 11:43:55", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "5": "248", + "parent_id": "248", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "271", + "id": "271", + "1": "itop-oauth-client", + "name": "itop-oauth-client", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:43:55", + "installed": "2025-11-10 11:43:55", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-welcome-itil\/3.1.0,", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-welcome-itil\/3.1.0,", + "5": "248", + "parent_id": "248", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "272", + "id": "272", + "1": "itop-themes-compat", + "name": "itop-themes-compat", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:43:55", + "installed": "2025-11-10 11:43:55", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/3.1.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/3.1.0", + "5": "248", + "parent_id": "248", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "273", + "id": "273", + "1": "itop-datacenter-mgmt", + "name": "itop-datacenter-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:43:55", + "installed": "2025-11-10 11:43:55", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0", + "5": "248", + "parent_id": "248", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "274", + "id": "274", + "1": "itop-endusers-devices", + "name": "itop-endusers-devices", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:43:55", + "installed": "2025-11-10 11:43:55", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0", + "5": "248", + "parent_id": "248", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "275", + "id": "275", + "1": "itop-storage-mgmt", + "name": "itop-storage-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:43:55", + "installed": "2025-11-10 11:43:55", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "5": "248", + "parent_id": "248", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "276", + "id": "276", + "1": "itop-virtualization-mgmt", + "name": "itop-virtualization-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:43:55", + "installed": "2025-11-10 11:43:55", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "5": "248", + "parent_id": "248", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "277", + "id": "277", + "1": "itop-bridge-cmdb-ticket", + "name": "itop-bridge-cmdb-ticket", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:43:55", + "installed": "2025-11-10 11:43:55", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-tickets\/2.7.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-tickets\/2.7.0", + "5": "248", + "parent_id": "248", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "278", + "id": "278", + "1": "itop-bridge-virtualization-storage", + "name": "itop-bridge-virtualization-storage", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:43:55", + "installed": "2025-11-10 11:43:55", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-storage-mgmt\/2.2.0\nDepends on module: itop-virtualization-mgmt\/2.2.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-storage-mgmt\/2.2.0\nDepends on module: itop-virtualization-mgmt\/2.2.0", + "5": "248", + "parent_id": "248", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "279", + "id": "279", + "1": "itop-service-mgmt", + "name": "itop-service-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:43:55", + "installed": "2025-11-10 11:43:55", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-tickets\/2.0.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-tickets\/2.0.0", + "5": "248", + "parent_id": "248", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "280", + "id": "280", + "1": "itop-bridge-cmdb-services", + "name": "itop-bridge-cmdb-services", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:43:55", + "installed": "2025-11-10 11:43:55", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1", + "5": "248", + "parent_id": "248", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "281", + "id": "281", + "1": "itop-bridge-datacenter-mgmt-services", + "name": "itop-bridge-datacenter-mgmt-services", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:43:55", + "installed": "2025-11-10 11:43:55", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-datacenter-mgmt\/3.1.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-datacenter-mgmt\/3.1.0", + "5": "248", + "parent_id": "248", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "282", + "id": "282", + "1": "itop-bridge-endusers-devices-services", + "name": "itop-bridge-endusers-devices-services", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:43:55", + "installed": "2025-11-10 11:43:55", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-endusers-devices\/3.1.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-endusers-devices\/3.1.0", + "5": "248", + "parent_id": "248", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "283", + "id": "283", + "1": "itop-bridge-storage-mgmt-services", + "name": "itop-bridge-storage-mgmt-services", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:43:55", + "installed": "2025-11-10 11:43:55", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-storage-mgmt\/3.1.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-storage-mgmt\/3.1.0", + "5": "248", + "parent_id": "248", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "284", + "id": "284", + "1": "itop-bridge-virtualization-mgmt-services", + "name": "itop-bridge-virtualization-mgmt-services", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:43:55", + "installed": "2025-11-10 11:43:55", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-virtualization-mgmt\/3.1.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-virtualization-mgmt\/3.1.0", + "5": "248", + "parent_id": "248", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "285", + "id": "285", + "1": "itop-request-mgmt", + "name": "itop-request-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:43:55", + "installed": "2025-11-10 11:43:55", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-tickets\/2.4.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-tickets\/2.4.0", + "5": "248", + "parent_id": "248", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "286", + "id": "286", + "1": "itop-portal", + "name": "itop-portal", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:43:55", + "installed": "2025-11-10 11:43:55", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-portal-base\/2.7.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-portal-base\/2.7.0", + "5": "248", + "parent_id": "248", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "287", + "id": "287", + "1": "itop-change-mgmt", + "name": "itop-change-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:43:55", + "installed": "2025-11-10 11:43:55", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0\nDepends on module: itop-tickets\/2.0.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0\nDepends on module: itop-tickets\/2.0.0", + "5": "248", + "parent_id": "248", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "288", + "id": "288", + "1": "datamodel", + "name": "datamodel", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:47:54", + "installed": "2025-11-10 11:47:54", + "4": "{\"source_dir\":\"datamodels\\\/2.x\\\/\"}", + "comment": "{\"source_dir\":\"datamodels\\\/2.x\\\/\"}", + "5": "0", + "parent_id": "0", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "289", + "id": "289", + "1": "iTop", + "name": "iTop", + "2": "3.3.0-dev-svn", + "version": "3.3.0-dev-svn", + "3": "2025-11-10 11:47:54", + "installed": "2025-11-10 11:47:54", + "4": "Done by the setup program\nBuilt on $WCNOW$", + "comment": "Done by the setup program\nBuilt on $WCNOW$", + "5": "0", + "parent_id": "0", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "290", + "id": "290", + "1": "authent-cas", + "name": "authent-cas", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:47:54", + "installed": "2025-11-10 11:47:54", + "4": "Done by the setup program\nMandatory\nVisible (during the setup)", + "comment": "Done by the setup program\nMandatory\nVisible (during the setup)", + "5": "289", + "parent_id": "289", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "291", + "id": "291", + "1": "authent-external", + "name": "authent-external", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:47:54", + "installed": "2025-11-10 11:47:54", + "4": "Done by the setup program\nOptional\nVisible (during the setup)", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)", + "5": "289", + "parent_id": "289", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "292", + "id": "292", + "1": "authent-ldap", + "name": "authent-ldap", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:47:54", + "installed": "2025-11-10 11:47:54", + "4": "Done by the setup program\nOptional\nVisible (during the setup)", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)", + "5": "289", + "parent_id": "289", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "293", + "id": "293", + "1": "authent-local", + "name": "authent-local", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:47:54", + "installed": "2025-11-10 11:47:54", + "4": "Done by the setup program\nMandatory\nVisible (during the setup)", + "comment": "Done by the setup program\nMandatory\nVisible (during the setup)", + "5": "289", + "parent_id": "289", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "294", + "id": "294", + "1": "combodo-backoffice-darkmoon-theme", + "name": "combodo-backoffice-darkmoon-theme", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:47:54", + "installed": "2025-11-10 11:47:54", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "289", + "parent_id": "289", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "295", + "id": "295", + "1": "combodo-backoffice-fullmoon-high-contrast-theme", + "name": "combodo-backoffice-fullmoon-high-contrast-theme", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:47:54", + "installed": "2025-11-10 11:47:54", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "289", + "parent_id": "289", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "296", + "id": "296", + "1": "combodo-backoffice-fullmoon-protanopia-deuteranopia-theme", + "name": "combodo-backoffice-fullmoon-protanopia-deuteranopia-theme", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:47:54", + "installed": "2025-11-10 11:47:54", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "289", + "parent_id": "289", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "297", + "id": "297", + "1": "combodo-backoffice-fullmoon-tritanopia-theme", + "name": "combodo-backoffice-fullmoon-tritanopia-theme", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:47:54", + "installed": "2025-11-10 11:47:54", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "289", + "parent_id": "289", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "298", + "id": "298", + "1": "itop-backup", + "name": "itop-backup", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:47:54", + "installed": "2025-11-10 11:47:54", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "289", + "parent_id": "289", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "299", + "id": "299", + "1": "itop-config", + "name": "itop-config", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:47:54", + "installed": "2025-11-10 11:47:54", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "289", + "parent_id": "289", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "300", + "id": "300", + "1": "itop-files-information", + "name": "itop-files-information", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:47:54", + "installed": "2025-11-10 11:47:54", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)", + "5": "289", + "parent_id": "289", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "301", + "id": "301", + "1": "itop-portal-base", + "name": "itop-portal-base", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:47:54", + "installed": "2025-11-10 11:47:54", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "289", + "parent_id": "289", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "302", + "id": "302", + "1": "itop-profiles-itil", + "name": "itop-profiles-itil", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:47:54", + "installed": "2025-11-10 11:47:54", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "289", + "parent_id": "289", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "303", + "id": "303", + "1": "itop-sla-computation", + "name": "itop-sla-computation", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:47:54", + "installed": "2025-11-10 11:47:54", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "289", + "parent_id": "289", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "304", + "id": "304", + "1": "itop-structure", + "name": "itop-structure", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:47:54", + "installed": "2025-11-10 11:47:54", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "289", + "parent_id": "289", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "305", + "id": "305", + "1": "itop-welcome-itil", + "name": "itop-welcome-itil", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:47:54", + "installed": "2025-11-10 11:47:54", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "289", + "parent_id": "289", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "306", + "id": "306", + "1": "itop-config-mgmt", + "name": "itop-config-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:47:54", + "installed": "2025-11-10 11:47:54", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/2.7.1", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/2.7.1", + "5": "289", + "parent_id": "289", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "307", + "id": "307", + "1": "itop-attachments", + "name": "itop-attachments", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:47:54", + "installed": "2025-11-10 11:47:54", + "4": "Done by the setup program\nOptional\nVisible (during the setup)", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)", + "5": "289", + "parent_id": "289", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "308", + "id": "308", + "1": "itop-tickets", + "name": "itop-tickets", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:47:54", + "installed": "2025-11-10 11:47:54", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/2.7.1", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/2.7.1", + "5": "289", + "parent_id": "289", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "309", + "id": "309", + "1": "combodo-db-tools", + "name": "combodo-db-tools", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:47:54", + "installed": "2025-11-10 11:47:54", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/3.0.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/3.0.0", + "5": "289", + "parent_id": "289", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "310", + "id": "310", + "1": "itop-core-update", + "name": "itop-core-update", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:47:54", + "installed": "2025-11-10 11:47:54", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-files-information\/2.7.0\nDepends on module: combodo-db-tools\/2.7.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-files-information\/2.7.0\nDepends on module: combodo-db-tools\/2.7.0", + "5": "289", + "parent_id": "289", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "311", + "id": "311", + "1": "itop-hub-connector", + "name": "itop-hub-connector", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:47:54", + "installed": "2025-11-10 11:47:54", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "5": "289", + "parent_id": "289", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "312", + "id": "312", + "1": "itop-oauth-client", + "name": "itop-oauth-client", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:47:54", + "installed": "2025-11-10 11:47:54", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-welcome-itil\/3.1.0,", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-welcome-itil\/3.1.0,", + "5": "289", + "parent_id": "289", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "313", + "id": "313", + "1": "itop-themes-compat", + "name": "itop-themes-compat", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:47:54", + "installed": "2025-11-10 11:47:54", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/3.1.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/3.1.0", + "5": "289", + "parent_id": "289", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "314", + "id": "314", + "1": "itop-datacenter-mgmt", + "name": "itop-datacenter-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:47:54", + "installed": "2025-11-10 11:47:54", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0", + "5": "289", + "parent_id": "289", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "315", + "id": "315", + "1": "itop-endusers-devices", + "name": "itop-endusers-devices", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:47:54", + "installed": "2025-11-10 11:47:54", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0", + "5": "289", + "parent_id": "289", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "316", + "id": "316", + "1": "itop-storage-mgmt", + "name": "itop-storage-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:47:54", + "installed": "2025-11-10 11:47:54", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "5": "289", + "parent_id": "289", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "317", + "id": "317", + "1": "itop-virtualization-mgmt", + "name": "itop-virtualization-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:47:54", + "installed": "2025-11-10 11:47:54", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "5": "289", + "parent_id": "289", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "318", + "id": "318", + "1": "itop-bridge-cmdb-ticket", + "name": "itop-bridge-cmdb-ticket", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:47:54", + "installed": "2025-11-10 11:47:54", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-tickets\/2.7.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-tickets\/2.7.0", + "5": "289", + "parent_id": "289", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "319", + "id": "319", + "1": "itop-bridge-virtualization-storage", + "name": "itop-bridge-virtualization-storage", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:47:54", + "installed": "2025-11-10 11:47:54", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-storage-mgmt\/2.2.0\nDepends on module: itop-virtualization-mgmt\/2.2.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-storage-mgmt\/2.2.0\nDepends on module: itop-virtualization-mgmt\/2.2.0", + "5": "289", + "parent_id": "289", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "320", + "id": "320", + "1": "itop-service-mgmt", + "name": "itop-service-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:47:54", + "installed": "2025-11-10 11:47:54", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-tickets\/2.0.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-tickets\/2.0.0", + "5": "289", + "parent_id": "289", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "321", + "id": "321", + "1": "itop-bridge-cmdb-services", + "name": "itop-bridge-cmdb-services", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:47:54", + "installed": "2025-11-10 11:47:54", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1", + "5": "289", + "parent_id": "289", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "322", + "id": "322", + "1": "itop-bridge-datacenter-mgmt-services", + "name": "itop-bridge-datacenter-mgmt-services", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:47:54", + "installed": "2025-11-10 11:47:54", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-datacenter-mgmt\/3.1.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-datacenter-mgmt\/3.1.0", + "5": "289", + "parent_id": "289", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "323", + "id": "323", + "1": "itop-bridge-endusers-devices-services", + "name": "itop-bridge-endusers-devices-services", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:47:54", + "installed": "2025-11-10 11:47:54", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-endusers-devices\/3.1.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-endusers-devices\/3.1.0", + "5": "289", + "parent_id": "289", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "324", + "id": "324", + "1": "itop-bridge-storage-mgmt-services", + "name": "itop-bridge-storage-mgmt-services", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:47:54", + "installed": "2025-11-10 11:47:54", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-storage-mgmt\/3.1.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-storage-mgmt\/3.1.0", + "5": "289", + "parent_id": "289", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "325", + "id": "325", + "1": "itop-bridge-virtualization-mgmt-services", + "name": "itop-bridge-virtualization-mgmt-services", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:47:54", + "installed": "2025-11-10 11:47:54", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-virtualization-mgmt\/3.1.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-virtualization-mgmt\/3.1.0", + "5": "289", + "parent_id": "289", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "326", + "id": "326", + "1": "itop-request-mgmt", + "name": "itop-request-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:47:54", + "installed": "2025-11-10 11:47:54", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-tickets\/2.4.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-tickets\/2.4.0", + "5": "289", + "parent_id": "289", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "327", + "id": "327", + "1": "itop-portal", + "name": "itop-portal", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:47:54", + "installed": "2025-11-10 11:47:54", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-portal-base\/2.7.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-portal-base\/2.7.0", + "5": "289", + "parent_id": "289", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "328", + "id": "328", + "1": "itop-change-mgmt", + "name": "itop-change-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:47:54", + "installed": "2025-11-10 11:47:54", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0\nDepends on module: itop-tickets\/2.0.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0\nDepends on module: itop-tickets\/2.0.0", + "5": "289", + "parent_id": "289", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "329", + "id": "329", + "1": "datamodel", + "name": "datamodel", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "{\"source_dir\":\"datamodels\\\/2.x\\\/\"}", + "comment": "{\"source_dir\":\"datamodels\\\/2.x\\\/\"}", + "5": "0", + "parent_id": "0", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "330", + "id": "330", + "1": "iTop", + "name": "iTop", + "2": "3.3.0-dev-svn", + "version": "3.3.0-dev-svn", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nBuilt on $WCNOW$", + "comment": "Done by the setup program\nBuilt on $WCNOW$", + "5": "0", + "parent_id": "0", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "331", + "id": "331", + "1": "authent-cas", + "name": "authent-cas", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nMandatory\nVisible (during the setup)", + "comment": "Done by the setup program\nMandatory\nVisible (during the setup)", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "332", + "id": "332", + "1": "authent-external", + "name": "authent-external", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nOptional\nVisible (during the setup)", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "333", + "id": "333", + "1": "authent-ldap", + "name": "authent-ldap", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nOptional\nVisible (during the setup)", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "334", + "id": "334", + "1": "authent-local", + "name": "authent-local", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nMandatory\nVisible (during the setup)", + "comment": "Done by the setup program\nMandatory\nVisible (during the setup)", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "335", + "id": "335", + "1": "combodo-backoffice-darkmoon-theme", + "name": "combodo-backoffice-darkmoon-theme", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "336", + "id": "336", + "1": "combodo-backoffice-fullmoon-high-contrast-theme", + "name": "combodo-backoffice-fullmoon-high-contrast-theme", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "337", + "id": "337", + "1": "combodo-backoffice-fullmoon-protanopia-deuteranopia-theme", + "name": "combodo-backoffice-fullmoon-protanopia-deuteranopia-theme", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "338", + "id": "338", + "1": "combodo-backoffice-fullmoon-tritanopia-theme", + "name": "combodo-backoffice-fullmoon-tritanopia-theme", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "339", + "id": "339", + "1": "itop-backup", + "name": "itop-backup", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "340", + "id": "340", + "1": "itop-config", + "name": "itop-config", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "341", + "id": "341", + "1": "itop-files-information", + "name": "itop-files-information", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "342", + "id": "342", + "1": "itop-portal-base", + "name": "itop-portal-base", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "343", + "id": "343", + "1": "itop-profiles-itil", + "name": "itop-profiles-itil", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "344", + "id": "344", + "1": "itop-sla-computation", + "name": "itop-sla-computation", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "345", + "id": "345", + "1": "itop-structure", + "name": "itop-structure", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "346", + "id": "346", + "1": "itop-welcome-itil", + "name": "itop-welcome-itil", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "347", + "id": "347", + "1": "itop-config-mgmt", + "name": "itop-config-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/2.7.1", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/2.7.1", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "348", + "id": "348", + "1": "itop-attachments", + "name": "itop-attachments", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nOptional\nVisible (during the setup)", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "349", + "id": "349", + "1": "itop-tickets", + "name": "itop-tickets", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/2.7.1", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/2.7.1", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "350", + "id": "350", + "1": "combodo-db-tools", + "name": "combodo-db-tools", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/3.0.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/3.0.0", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "351", + "id": "351", + "1": "itop-core-update", + "name": "itop-core-update", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-files-information\/2.7.0\nDepends on module: combodo-db-tools\/2.7.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-files-information\/2.7.0\nDepends on module: combodo-db-tools\/2.7.0", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "352", + "id": "352", + "1": "itop-hub-connector", + "name": "itop-hub-connector", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "353", + "id": "353", + "1": "itop-oauth-client", + "name": "itop-oauth-client", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-welcome-itil\/3.1.0,", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-welcome-itil\/3.1.0,", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "354", + "id": "354", + "1": "itop-themes-compat", + "name": "itop-themes-compat", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/3.1.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/3.1.0", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "355", + "id": "355", + "1": "itop-datacenter-mgmt", + "name": "itop-datacenter-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "356", + "id": "356", + "1": "itop-endusers-devices", + "name": "itop-endusers-devices", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "357", + "id": "357", + "1": "itop-storage-mgmt", + "name": "itop-storage-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "358", + "id": "358", + "1": "itop-virtualization-mgmt", + "name": "itop-virtualization-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "359", + "id": "359", + "1": "itop-bridge-cmdb-ticket", + "name": "itop-bridge-cmdb-ticket", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-tickets\/2.7.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-tickets\/2.7.0", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "360", + "id": "360", + "1": "itop-bridge-virtualization-storage", + "name": "itop-bridge-virtualization-storage", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-storage-mgmt\/2.2.0\nDepends on module: itop-virtualization-mgmt\/2.2.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-storage-mgmt\/2.2.0\nDepends on module: itop-virtualization-mgmt\/2.2.0", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "361", + "id": "361", + "1": "itop-service-mgmt", + "name": "itop-service-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-tickets\/2.0.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-tickets\/2.0.0", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "362", + "id": "362", + "1": "itop-bridge-cmdb-services", + "name": "itop-bridge-cmdb-services", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "363", + "id": "363", + "1": "itop-bridge-datacenter-mgmt-services", + "name": "itop-bridge-datacenter-mgmt-services", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-datacenter-mgmt\/3.1.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-datacenter-mgmt\/3.1.0", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "364", + "id": "364", + "1": "itop-bridge-endusers-devices-services", + "name": "itop-bridge-endusers-devices-services", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-endusers-devices\/3.1.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-endusers-devices\/3.1.0", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "365", + "id": "365", + "1": "itop-bridge-storage-mgmt-services", + "name": "itop-bridge-storage-mgmt-services", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-storage-mgmt\/3.1.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-storage-mgmt\/3.1.0", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "366", + "id": "366", + "1": "itop-bridge-virtualization-mgmt-services", + "name": "itop-bridge-virtualization-mgmt-services", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-virtualization-mgmt\/3.1.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-virtualization-mgmt\/3.1.0", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "367", + "id": "367", + "1": "itop-request-mgmt", + "name": "itop-request-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-tickets\/2.4.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-tickets\/2.4.0", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "368", + "id": "368", + "1": "itop-portal", + "name": "itop-portal", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-portal-base\/2.7.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-portal-base\/2.7.0", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "369", + "id": "369", + "1": "itop-change-mgmt", + "name": "itop-change-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0\nDepends on module: itop-tickets\/2.0.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0\nDepends on module: itop-tickets\/2.0.0", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "370", + "id": "370", + "1": "datamodel", + "name": "datamodel", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 15:32:24", + "installed": "2025-11-10 15:32:24", + "4": "{\"source_dir\":\"datamodels\\\/2.x\\\/\"}", + "comment": "{\"source_dir\":\"datamodels\\\/2.x\\\/\"}", + "5": "0", + "parent_id": "0", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "371", + "id": "371", + "1": "iTop", + "name": "iTop", + "2": "3.3.0-dev-svn", + "version": "3.3.0-dev-svn", + "3": "2025-11-10 15:32:24", + "installed": "2025-11-10 15:32:24", + "4": "Done by the setup program\nBuilt on $WCNOW$", + "comment": "Done by the setup program\nBuilt on $WCNOW$", + "5": "0", + "parent_id": "0", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "372", + "id": "372", + "1": "authent-cas", + "name": "authent-cas", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 15:32:24", + "installed": "2025-11-10 15:32:24", + "4": "Done by the setup program\nMandatory\nVisible (during the setup)", + "comment": "Done by the setup program\nMandatory\nVisible (during the setup)", + "5": "371", + "parent_id": "371", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "373", + "id": "373", + "1": "authent-external", + "name": "authent-external", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 15:32:24", + "installed": "2025-11-10 15:32:24", + "4": "Done by the setup program\nOptional\nVisible (during the setup)", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)", + "5": "371", + "parent_id": "371", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "374", + "id": "374", + "1": "authent-ldap", + "name": "authent-ldap", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 15:32:24", + "installed": "2025-11-10 15:32:24", + "4": "Done by the setup program\nOptional\nVisible (during the setup)", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)", + "5": "371", + "parent_id": "371", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "375", + "id": "375", + "1": "authent-local", + "name": "authent-local", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 15:32:24", + "installed": "2025-11-10 15:32:24", + "4": "Done by the setup program\nMandatory\nVisible (during the setup)", + "comment": "Done by the setup program\nMandatory\nVisible (during the setup)", + "5": "371", + "parent_id": "371", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "376", + "id": "376", + "1": "combodo-backoffice-darkmoon-theme", + "name": "combodo-backoffice-darkmoon-theme", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 15:32:24", + "installed": "2025-11-10 15:32:24", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "371", + "parent_id": "371", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "377", + "id": "377", + "1": "combodo-backoffice-fullmoon-high-contrast-theme", + "name": "combodo-backoffice-fullmoon-high-contrast-theme", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 15:32:24", + "installed": "2025-11-10 15:32:24", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "371", + "parent_id": "371", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "378", + "id": "378", + "1": "combodo-backoffice-fullmoon-protanopia-deuteranopia-theme", + "name": "combodo-backoffice-fullmoon-protanopia-deuteranopia-theme", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 15:32:24", + "installed": "2025-11-10 15:32:24", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "371", + "parent_id": "371", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "379", + "id": "379", + "1": "combodo-backoffice-fullmoon-tritanopia-theme", + "name": "combodo-backoffice-fullmoon-tritanopia-theme", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 15:32:24", + "installed": "2025-11-10 15:32:24", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "371", + "parent_id": "371", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "380", + "id": "380", + "1": "itop-backup", + "name": "itop-backup", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 15:32:24", + "installed": "2025-11-10 15:32:24", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "371", + "parent_id": "371", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "381", + "id": "381", + "1": "itop-config", + "name": "itop-config", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 15:32:24", + "installed": "2025-11-10 15:32:24", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "371", + "parent_id": "371", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "382", + "id": "382", + "1": "itop-files-information", + "name": "itop-files-information", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 15:32:24", + "installed": "2025-11-10 15:32:24", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)", + "5": "371", + "parent_id": "371", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "383", + "id": "383", + "1": "itop-portal-base", + "name": "itop-portal-base", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 15:32:24", + "installed": "2025-11-10 15:32:24", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "371", + "parent_id": "371", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "384", + "id": "384", + "1": "itop-profiles-itil", + "name": "itop-profiles-itil", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 15:32:24", + "installed": "2025-11-10 15:32:24", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "371", + "parent_id": "371", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "385", + "id": "385", + "1": "itop-sla-computation", + "name": "itop-sla-computation", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 15:32:24", + "installed": "2025-11-10 15:32:24", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "371", + "parent_id": "371", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "386", + "id": "386", + "1": "itop-structure", + "name": "itop-structure", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 15:32:24", + "installed": "2025-11-10 15:32:24", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "371", + "parent_id": "371", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "387", + "id": "387", + "1": "itop-welcome-itil", + "name": "itop-welcome-itil", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 15:32:24", + "installed": "2025-11-10 15:32:24", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "371", + "parent_id": "371", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "388", + "id": "388", + "1": "itop-config-mgmt", + "name": "itop-config-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 15:32:24", + "installed": "2025-11-10 15:32:24", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/2.7.1", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/2.7.1", + "5": "371", + "parent_id": "371", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "389", + "id": "389", + "1": "itop-attachments", + "name": "itop-attachments", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 15:32:24", + "installed": "2025-11-10 15:32:24", + "4": "Done by the setup program\nOptional\nVisible (during the setup)", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)", + "5": "371", + "parent_id": "371", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "390", + "id": "390", + "1": "itop-tickets", + "name": "itop-tickets", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 15:32:24", + "installed": "2025-11-10 15:32:24", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/2.7.1", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/2.7.1", + "5": "371", + "parent_id": "371", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "391", + "id": "391", + "1": "combodo-db-tools", + "name": "combodo-db-tools", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 15:32:24", + "installed": "2025-11-10 15:32:24", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/3.0.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/3.0.0", + "5": "371", + "parent_id": "371", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "392", + "id": "392", + "1": "itop-core-update", + "name": "itop-core-update", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 15:32:24", + "installed": "2025-11-10 15:32:24", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-files-information\/2.7.0\nDepends on module: combodo-db-tools\/2.7.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-files-information\/2.7.0\nDepends on module: combodo-db-tools\/2.7.0", + "5": "371", + "parent_id": "371", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "393", + "id": "393", + "1": "itop-hub-connector", + "name": "itop-hub-connector", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 15:32:24", + "installed": "2025-11-10 15:32:24", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "5": "371", + "parent_id": "371", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "394", + "id": "394", + "1": "itop-oauth-client", + "name": "itop-oauth-client", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 15:32:24", + "installed": "2025-11-10 15:32:24", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-welcome-itil\/3.1.0,", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-welcome-itil\/3.1.0,", + "5": "371", + "parent_id": "371", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "395", + "id": "395", + "1": "itop-themes-compat", + "name": "itop-themes-compat", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 15:32:24", + "installed": "2025-11-10 15:32:24", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/3.1.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/3.1.0", + "5": "371", + "parent_id": "371", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "396", + "id": "396", + "1": "itop-datacenter-mgmt", + "name": "itop-datacenter-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 15:32:24", + "installed": "2025-11-10 15:32:24", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0", + "5": "371", + "parent_id": "371", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "397", + "id": "397", + "1": "itop-endusers-devices", + "name": "itop-endusers-devices", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 15:32:24", + "installed": "2025-11-10 15:32:24", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0", + "5": "371", + "parent_id": "371", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "398", + "id": "398", + "1": "itop-storage-mgmt", + "name": "itop-storage-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 15:32:24", + "installed": "2025-11-10 15:32:24", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "5": "371", + "parent_id": "371", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "399", + "id": "399", + "1": "itop-virtualization-mgmt", + "name": "itop-virtualization-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 15:32:24", + "installed": "2025-11-10 15:32:24", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "5": "371", + "parent_id": "371", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "400", + "id": "400", + "1": "itop-bridge-cmdb-ticket", + "name": "itop-bridge-cmdb-ticket", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 15:32:24", + "installed": "2025-11-10 15:32:24", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-tickets\/2.7.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-tickets\/2.7.0", + "5": "371", + "parent_id": "371", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "401", + "id": "401", + "1": "itop-bridge-virtualization-storage", + "name": "itop-bridge-virtualization-storage", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 15:32:24", + "installed": "2025-11-10 15:32:24", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-storage-mgmt\/2.2.0\nDepends on module: itop-virtualization-mgmt\/2.2.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-storage-mgmt\/2.2.0\nDepends on module: itop-virtualization-mgmt\/2.2.0", + "5": "371", + "parent_id": "371", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "402", + "id": "402", + "1": "itop-service-mgmt", + "name": "itop-service-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 15:32:24", + "installed": "2025-11-10 15:32:24", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-tickets\/2.0.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-tickets\/2.0.0", + "5": "371", + "parent_id": "371", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "403", + "id": "403", + "1": "itop-bridge-cmdb-services", + "name": "itop-bridge-cmdb-services", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 15:32:24", + "installed": "2025-11-10 15:32:24", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1", + "5": "371", + "parent_id": "371", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "404", + "id": "404", + "1": "itop-bridge-datacenter-mgmt-services", + "name": "itop-bridge-datacenter-mgmt-services", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 15:32:24", + "installed": "2025-11-10 15:32:24", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-datacenter-mgmt\/3.1.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-datacenter-mgmt\/3.1.0", + "5": "371", + "parent_id": "371", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "405", + "id": "405", + "1": "itop-bridge-endusers-devices-services", + "name": "itop-bridge-endusers-devices-services", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 15:32:24", + "installed": "2025-11-10 15:32:24", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-endusers-devices\/3.1.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-endusers-devices\/3.1.0", + "5": "371", + "parent_id": "371", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "406", + "id": "406", + "1": "itop-bridge-storage-mgmt-services", + "name": "itop-bridge-storage-mgmt-services", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 15:32:24", + "installed": "2025-11-10 15:32:24", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-storage-mgmt\/3.1.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-storage-mgmt\/3.1.0", + "5": "371", + "parent_id": "371", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "407", + "id": "407", + "1": "itop-bridge-virtualization-mgmt-services", + "name": "itop-bridge-virtualization-mgmt-services", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 15:32:24", + "installed": "2025-11-10 15:32:24", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-virtualization-mgmt\/3.1.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-virtualization-mgmt\/3.1.0", + "5": "371", + "parent_id": "371", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "408", + "id": "408", + "1": "itop-request-mgmt", + "name": "itop-request-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 15:32:24", + "installed": "2025-11-10 15:32:24", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-tickets\/2.4.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-tickets\/2.4.0", + "5": "371", + "parent_id": "371", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "409", + "id": "409", + "1": "itop-portal", + "name": "itop-portal", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 15:32:24", + "installed": "2025-11-10 15:32:24", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-portal-base\/2.7.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-portal-base\/2.7.0", + "5": "371", + "parent_id": "371", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "410", + "id": "410", + "1": "itop-change-mgmt", + "name": "itop-change-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 15:32:24", + "installed": "2025-11-10 15:32:24", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0\nDepends on module: itop-tickets\/2.0.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0\nDepends on module: itop-tickets\/2.0.0", + "5": "371", + "parent_id": "371", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "411", + "id": "411", + "1": "datamodel", + "name": "datamodel", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 16:14:15", + "installed": "2025-11-10 16:14:15", + "4": "{\"source_dir\":\"datamodels\\\/2.x\\\/\"}", + "comment": "{\"source_dir\":\"datamodels\\\/2.x\\\/\"}", + "5": "0", + "parent_id": "0", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "412", + "id": "412", + "1": "iTop", + "name": "iTop", + "2": "3.3.0-dev-svn", + "version": "3.3.0-dev-svn", + "3": "2025-11-10 16:14:15", + "installed": "2025-11-10 16:14:15", + "4": "Done by the setup program\nBuilt on $WCNOW$", + "comment": "Done by the setup program\nBuilt on $WCNOW$", + "5": "0", + "parent_id": "0", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "413", + "id": "413", + "1": "authent-cas", + "name": "authent-cas", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 16:14:15", + "installed": "2025-11-10 16:14:15", + "4": "Done by the setup program\nMandatory\nVisible (during the setup)", + "comment": "Done by the setup program\nMandatory\nVisible (during the setup)", + "5": "412", + "parent_id": "412", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "414", + "id": "414", + "1": "authent-external", + "name": "authent-external", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 16:14:15", + "installed": "2025-11-10 16:14:15", + "4": "Done by the setup program\nOptional\nVisible (during the setup)", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)", + "5": "412", + "parent_id": "412", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "415", + "id": "415", + "1": "authent-ldap", + "name": "authent-ldap", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 16:14:15", + "installed": "2025-11-10 16:14:15", + "4": "Done by the setup program\nOptional\nVisible (during the setup)", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)", + "5": "412", + "parent_id": "412", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "416", + "id": "416", + "1": "authent-local", + "name": "authent-local", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 16:14:15", + "installed": "2025-11-10 16:14:15", + "4": "Done by the setup program\nMandatory\nVisible (during the setup)", + "comment": "Done by the setup program\nMandatory\nVisible (during the setup)", + "5": "412", + "parent_id": "412", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "417", + "id": "417", + "1": "combodo-backoffice-darkmoon-theme", + "name": "combodo-backoffice-darkmoon-theme", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 16:14:15", + "installed": "2025-11-10 16:14:15", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "412", + "parent_id": "412", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "418", + "id": "418", + "1": "combodo-backoffice-fullmoon-high-contrast-theme", + "name": "combodo-backoffice-fullmoon-high-contrast-theme", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 16:14:15", + "installed": "2025-11-10 16:14:15", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "412", + "parent_id": "412", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "419", + "id": "419", + "1": "combodo-backoffice-fullmoon-protanopia-deuteranopia-theme", + "name": "combodo-backoffice-fullmoon-protanopia-deuteranopia-theme", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 16:14:15", + "installed": "2025-11-10 16:14:15", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "412", + "parent_id": "412", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "420", + "id": "420", + "1": "combodo-backoffice-fullmoon-tritanopia-theme", + "name": "combodo-backoffice-fullmoon-tritanopia-theme", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 16:14:15", + "installed": "2025-11-10 16:14:15", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "412", + "parent_id": "412", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "421", + "id": "421", + "1": "itop-backup", + "name": "itop-backup", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 16:14:15", + "installed": "2025-11-10 16:14:15", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "412", + "parent_id": "412", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "422", + "id": "422", + "1": "itop-config", + "name": "itop-config", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 16:14:15", + "installed": "2025-11-10 16:14:15", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "412", + "parent_id": "412", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "423", + "id": "423", + "1": "itop-files-information", + "name": "itop-files-information", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 16:14:15", + "installed": "2025-11-10 16:14:15", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)", + "5": "412", + "parent_id": "412", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "424", + "id": "424", + "1": "itop-portal-base", + "name": "itop-portal-base", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 16:14:15", + "installed": "2025-11-10 16:14:15", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "412", + "parent_id": "412", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "425", + "id": "425", + "1": "itop-profiles-itil", + "name": "itop-profiles-itil", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 16:14:15", + "installed": "2025-11-10 16:14:15", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "412", + "parent_id": "412", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "426", + "id": "426", + "1": "itop-sla-computation", + "name": "itop-sla-computation", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 16:14:15", + "installed": "2025-11-10 16:14:15", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "412", + "parent_id": "412", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "427", + "id": "427", + "1": "itop-structure", + "name": "itop-structure", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 16:14:15", + "installed": "2025-11-10 16:14:15", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "412", + "parent_id": "412", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "428", + "id": "428", + "1": "itop-welcome-itil", + "name": "itop-welcome-itil", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 16:14:15", + "installed": "2025-11-10 16:14:15", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "412", + "parent_id": "412", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "429", + "id": "429", + "1": "itop-config-mgmt", + "name": "itop-config-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 16:14:15", + "installed": "2025-11-10 16:14:15", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/2.7.1", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/2.7.1", + "5": "412", + "parent_id": "412", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "430", + "id": "430", + "1": "itop-attachments", + "name": "itop-attachments", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 16:14:15", + "installed": "2025-11-10 16:14:15", + "4": "Done by the setup program\nOptional\nVisible (during the setup)", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)", + "5": "412", + "parent_id": "412", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "431", + "id": "431", + "1": "itop-tickets", + "name": "itop-tickets", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 16:14:15", + "installed": "2025-11-10 16:14:15", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/2.7.1", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/2.7.1", + "5": "412", + "parent_id": "412", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "432", + "id": "432", + "1": "combodo-db-tools", + "name": "combodo-db-tools", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 16:14:15", + "installed": "2025-11-10 16:14:15", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/3.0.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/3.0.0", + "5": "412", + "parent_id": "412", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "433", + "id": "433", + "1": "itop-core-update", + "name": "itop-core-update", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 16:14:15", + "installed": "2025-11-10 16:14:15", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-files-information\/2.7.0\nDepends on module: combodo-db-tools\/2.7.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-files-information\/2.7.0\nDepends on module: combodo-db-tools\/2.7.0", + "5": "412", + "parent_id": "412", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "434", + "id": "434", + "1": "itop-hub-connector", + "name": "itop-hub-connector", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 16:14:15", + "installed": "2025-11-10 16:14:15", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "5": "412", + "parent_id": "412", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "435", + "id": "435", + "1": "itop-oauth-client", + "name": "itop-oauth-client", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 16:14:15", + "installed": "2025-11-10 16:14:15", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-welcome-itil\/3.1.0,", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-welcome-itil\/3.1.0,", + "5": "412", + "parent_id": "412", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "436", + "id": "436", + "1": "itop-themes-compat", + "name": "itop-themes-compat", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 16:14:15", + "installed": "2025-11-10 16:14:15", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/3.1.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/3.1.0", + "5": "412", + "parent_id": "412", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "437", + "id": "437", + "1": "itop-datacenter-mgmt", + "name": "itop-datacenter-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 16:14:15", + "installed": "2025-11-10 16:14:15", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0", + "5": "412", + "parent_id": "412", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "438", + "id": "438", + "1": "itop-endusers-devices", + "name": "itop-endusers-devices", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 16:14:15", + "installed": "2025-11-10 16:14:15", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0", + "5": "412", + "parent_id": "412", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "439", + "id": "439", + "1": "itop-storage-mgmt", + "name": "itop-storage-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 16:14:15", + "installed": "2025-11-10 16:14:15", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "5": "412", + "parent_id": "412", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "440", + "id": "440", + "1": "itop-virtualization-mgmt", + "name": "itop-virtualization-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 16:14:15", + "installed": "2025-11-10 16:14:15", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "5": "412", + "parent_id": "412", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "441", + "id": "441", + "1": "itop-bridge-cmdb-ticket", + "name": "itop-bridge-cmdb-ticket", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 16:14:15", + "installed": "2025-11-10 16:14:15", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-tickets\/2.7.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-tickets\/2.7.0", + "5": "412", + "parent_id": "412", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "442", + "id": "442", + "1": "itop-bridge-virtualization-storage", + "name": "itop-bridge-virtualization-storage", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 16:14:15", + "installed": "2025-11-10 16:14:15", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-storage-mgmt\/2.2.0\nDepends on module: itop-virtualization-mgmt\/2.2.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-storage-mgmt\/2.2.0\nDepends on module: itop-virtualization-mgmt\/2.2.0", + "5": "412", + "parent_id": "412", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "443", + "id": "443", + "1": "itop-service-mgmt", + "name": "itop-service-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 16:14:15", + "installed": "2025-11-10 16:14:15", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-tickets\/2.0.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-tickets\/2.0.0", + "5": "412", + "parent_id": "412", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "444", + "id": "444", + "1": "itop-bridge-cmdb-services", + "name": "itop-bridge-cmdb-services", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 16:14:15", + "installed": "2025-11-10 16:14:15", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1", + "5": "412", + "parent_id": "412", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "445", + "id": "445", + "1": "itop-bridge-datacenter-mgmt-services", + "name": "itop-bridge-datacenter-mgmt-services", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 16:14:15", + "installed": "2025-11-10 16:14:15", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-datacenter-mgmt\/3.1.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-datacenter-mgmt\/3.1.0", + "5": "412", + "parent_id": "412", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "446", + "id": "446", + "1": "itop-bridge-endusers-devices-services", + "name": "itop-bridge-endusers-devices-services", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 16:14:15", + "installed": "2025-11-10 16:14:15", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-endusers-devices\/3.1.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-endusers-devices\/3.1.0", + "5": "412", + "parent_id": "412", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "447", + "id": "447", + "1": "itop-bridge-storage-mgmt-services", + "name": "itop-bridge-storage-mgmt-services", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 16:14:15", + "installed": "2025-11-10 16:14:15", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-storage-mgmt\/3.1.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-storage-mgmt\/3.1.0", + "5": "412", + "parent_id": "412", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "448", + "id": "448", + "1": "itop-bridge-virtualization-mgmt-services", + "name": "itop-bridge-virtualization-mgmt-services", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 16:14:15", + "installed": "2025-11-10 16:14:15", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-virtualization-mgmt\/3.1.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-virtualization-mgmt\/3.1.0", + "5": "412", + "parent_id": "412", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "449", + "id": "449", + "1": "itop-request-mgmt", + "name": "itop-request-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 16:14:15", + "installed": "2025-11-10 16:14:15", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-tickets\/2.4.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-tickets\/2.4.0", + "5": "412", + "parent_id": "412", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "450", + "id": "450", + "1": "itop-portal", + "name": "itop-portal", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 16:14:15", + "installed": "2025-11-10 16:14:15", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-portal-base\/2.7.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-portal-base\/2.7.0", + "5": "412", + "parent_id": "412", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "451", + "id": "451", + "1": "itop-change-mgmt", + "name": "itop-change-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 16:14:15", + "installed": "2025-11-10 16:14:15", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0\nDepends on module: itop-tickets\/2.0.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0\nDepends on module: itop-tickets\/2.0.0", + "5": "412", + "parent_id": "412", + "6": "yes", + "uninstallable": "yes" + } +] \ No newline at end of file diff --git a/tests/php-unit-tests/unitary-tests/setup/ressources/priv_modules2.json b/tests/php-unit-tests/unitary-tests/setup/ressources/priv_modules2.json new file mode 100644 index 000000000..8f4244366 --- /dev/null +++ b/tests/php-unit-tests/unitary-tests/setup/ressources/priv_modules2.json @@ -0,0 +1,642 @@ +[ + { + "0": "330", + "id": "330", + "1": "iTop", + "name": "iTop", + "2": "3.3.0-dev-svn", + "version": "3.3.0-dev-svn", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nBuilt on $WCNOW$", + "comment": "Done by the setup program\nBuilt on $WCNOW$", + "5": "0", + "parent_id": "0", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "331", + "id": "331", + "1": "authent-cas", + "name": "authent-cas", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nMandatory\nVisible (during the setup)", + "comment": "Done by the setup program\nMandatory\nVisible (during the setup)", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "332", + "id": "332", + "1": "authent-external", + "name": "authent-external", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nOptional\nVisible (during the setup)", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "333", + "id": "333", + "1": "authent-ldap", + "name": "authent-ldap", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nOptional\nVisible (during the setup)", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "334", + "id": "334", + "1": "authent-local", + "name": "authent-local", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nMandatory\nVisible (during the setup)", + "comment": "Done by the setup program\nMandatory\nVisible (during the setup)", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "335", + "id": "335", + "1": "combodo-backoffice-darkmoon-theme", + "name": "combodo-backoffice-darkmoon-theme", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "336", + "id": "336", + "1": "combodo-backoffice-fullmoon-high-contrast-theme", + "name": "combodo-backoffice-fullmoon-high-contrast-theme", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "337", + "id": "337", + "1": "combodo-backoffice-fullmoon-protanopia-deuteranopia-theme", + "name": "combodo-backoffice-fullmoon-protanopia-deuteranopia-theme", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "338", + "id": "338", + "1": "combodo-backoffice-fullmoon-tritanopia-theme", + "name": "combodo-backoffice-fullmoon-tritanopia-theme", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "339", + "id": "339", + "1": "itop-backup", + "name": "itop-backup", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "340", + "id": "340", + "1": "itop-config", + "name": "itop-config", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "341", + "id": "341", + "1": "itop-files-information", + "name": "itop-files-information", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "342", + "id": "342", + "1": "itop-portal-base", + "name": "itop-portal-base", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "343", + "id": "343", + "1": "itop-profiles-itil", + "name": "itop-profiles-itil", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "344", + "id": "344", + "1": "itop-sla-computation", + "name": "itop-sla-computation", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "345", + "id": "345", + "1": "itop-structure", + "name": "itop-structure", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "346", + "id": "346", + "1": "itop-welcome-itil", + "name": "itop-welcome-itil", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "comment": "Done by the setup program\nMandatory\nHidden (selected automatically)", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "347", + "id": "347", + "1": "itop-config-mgmt", + "name": "itop-config-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/2.7.1", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/2.7.1", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "348", + "id": "348", + "1": "itop-attachments", + "name": "itop-attachments", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nOptional\nVisible (during the setup)", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "349", + "id": "349", + "1": "itop-tickets", + "name": "itop-tickets", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/2.7.1", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/2.7.1", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "350", + "id": "350", + "1": "combodo-db-tools", + "name": "combodo-db-tools", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/3.0.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/3.0.0", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "351", + "id": "351", + "1": "itop-core-update", + "name": "itop-core-update", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-files-information\/2.7.0\nDepends on module: combodo-db-tools\/2.7.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-files-information\/2.7.0\nDepends on module: combodo-db-tools\/2.7.0", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "352", + "id": "352", + "1": "itop-hub-connector", + "name": "itop-hub-connector", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "353", + "id": "353", + "1": "itop-oauth-client", + "name": "itop-oauth-client", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-welcome-itil\/3.1.0,", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-welcome-itil\/3.1.0,", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "354", + "id": "354", + "1": "itop-themes-compat", + "name": "itop-themes-compat", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/3.1.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-structure\/3.1.0", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "355", + "id": "355", + "1": "itop-datacenter-mgmt", + "name": "itop-datacenter-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "356", + "id": "356", + "1": "itop-endusers-devices", + "name": "itop-endusers-devices", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "357", + "id": "357", + "1": "itop-storage-mgmt", + "name": "itop-storage-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "358", + "id": "358", + "1": "itop-virtualization-mgmt", + "name": "itop-virtualization-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.4.0", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "359", + "id": "359", + "1": "itop-bridge-cmdb-ticket", + "name": "itop-bridge-cmdb-ticket", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-tickets\/2.7.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-tickets\/2.7.0", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "360", + "id": "360", + "1": "itop-bridge-virtualization-storage", + "name": "itop-bridge-virtualization-storage", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-storage-mgmt\/2.2.0\nDepends on module: itop-virtualization-mgmt\/2.2.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-storage-mgmt\/2.2.0\nDepends on module: itop-virtualization-mgmt\/2.2.0", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "361", + "id": "361", + "1": "itop-service-mgmt", + "name": "itop-service-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-tickets\/2.0.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-tickets\/2.0.0", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "362", + "id": "362", + "1": "itop-bridge-cmdb-services", + "name": "itop-bridge-cmdb-services", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "363", + "id": "363", + "1": "itop-bridge-datacenter-mgmt-services", + "name": "itop-bridge-datacenter-mgmt-services", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-datacenter-mgmt\/3.1.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-datacenter-mgmt\/3.1.0", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "364", + "id": "364", + "1": "itop-bridge-endusers-devices-services", + "name": "itop-bridge-endusers-devices-services", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-endusers-devices\/3.1.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-endusers-devices\/3.1.0", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "365", + "id": "365", + "1": "itop-bridge-storage-mgmt-services", + "name": "itop-bridge-storage-mgmt-services", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-storage-mgmt\/3.1.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-storage-mgmt\/3.1.0", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "366", + "id": "366", + "1": "itop-bridge-virtualization-mgmt-services", + "name": "itop-bridge-virtualization-mgmt-services", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-virtualization-mgmt\/3.1.0", + "comment": "Done by the setup program\nOptional\nHidden (selected automatically)\nDepends on module: itop-config-mgmt\/2.7.1\nDepends on module: itop-service-mgmt\/2.7.1 || itop-service-mgmt-provider\/2.7.1\nDepends on module: itop-virtualization-mgmt\/3.1.0", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "367", + "id": "367", + "1": "itop-request-mgmt", + "name": "itop-request-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-tickets\/2.4.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-tickets\/2.4.0", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "368", + "id": "368", + "1": "itop-portal", + "name": "itop-portal", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-portal-base\/2.7.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-portal-base\/2.7.0", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "369", + "id": "369", + "1": "itop-change-mgmt", + "name": "itop-change-mgmt", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0\nDepends on module: itop-tickets\/2.0.0", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)\nDepends on module: itop-config-mgmt\/2.2.0\nDepends on module: itop-tickets\/2.0.0", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + } +] \ No newline at end of file diff --git a/tests/php-unit-tests/unitary-tests/setup/ressources/priv_modules_simpleusecase.json b/tests/php-unit-tests/unitary-tests/setup/ressources/priv_modules_simpleusecase.json new file mode 100644 index 000000000..2576b7f9e --- /dev/null +++ b/tests/php-unit-tests/unitary-tests/setup/ressources/priv_modules_simpleusecase.json @@ -0,0 +1,50 @@ +[ + { + "0": "330", + "id": "330", + "1": "iTop", + "name": "iTop", + "2": "3.3.0-dev-svn", + "version": "3.3.0-dev-svn", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nBuilt on $WCNOW$", + "comment": "Done by the setup program\nBuilt on $WCNOW$", + "5": "0", + "parent_id": "0", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "331", + "id": "331", + "1": "mandatory_module", + "name": "mandatory_module", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nMandatory\nVisible (during the setup)", + "comment": "Done by the setup program\nMandatory\nVisible (during the setup)", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "yes" + }, + { + "0": "332", + "id": "332", + "1": "optional_module", + "name": "optional_module", + "2": "3.3.0", + "version": "3.3.0", + "3": "2025-11-10 11:50:12", + "installed": "2025-11-10 11:50:12", + "4": "Done by the setup program\nOptional\nVisible (during the setup)", + "comment": "Done by the setup program\nOptional\nVisible (during the setup)", + "5": "330", + "parent_id": "330", + "6": "yes", + "uninstallable": "no" + } +] \ No newline at end of file diff --git a/tests/php-unit-tests/unitary-tests/setup/unattended-install/resources/AnalyzeInstallation.json b/tests/php-unit-tests/unitary-tests/setup/unattended-install/resources/AnalyzeInstallation.json index 7000b45d8..916272d81 100644 --- a/tests/php-unit-tests/unitary-tests/setup/unattended-install/resources/AnalyzeInstallation.json +++ b/tests/php-unit-tests/unitary-tests/setup/unattended-install/resources/AnalyzeInstallation.json @@ -1 +1 @@ -{"_Root_":{"version_db":"","name_db":"","version_code":"2.7.0-dev-svn","name_code":"iTop"},"authent-cas":{"label":"CAS SSO","category":"authentication","dependencies":[],"mandatory":true,"visible":true,"datamodel":["model.authent-cas.php","vendor\/autoload.php","src\/CASLoginExtension.php"],"webservice":[],"data.struct":[],"data.sample":[],"doc.manual_setup":"","doc.more_information":"","settings":{"cas_debug":false,"cas_host":"","cas_port":"","cas_context":"","cas_version":"","service_base_url":""},"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/authent-cas","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/authent-cas\/module.authent-cas.php","dictionary":["2.x\/authent-cas\/de.dict.authent-cas.php","2.x\/authent-cas\/cs.dict.authent-cas.php","2.x\/authent-cas\/nl.dict.authent-cas.php","2.x\/authent-cas\/da.dict.authent-cas.php","2.x\/authent-cas\/tr.dict.authent-cas.php","2.x\/authent-cas\/ru.dict.authent-cas.php","2.x\/authent-cas\/ja.dict.authent-cas.php","2.x\/authent-cas\/es_cr.dict.authent-cas.php","2.x\/authent-cas\/it.dict.authent-cas.php","2.x\/authent-cas\/pt_br.dict.authent-cas.php","2.x\/authent-cas\/sk.dict.authent-cas.php","2.x\/authent-cas\/hu.dict.authent-cas.php","2.x\/authent-cas\/zh_cn.dict.authent-cas.php","2.x\/authent-cas\/en.dict.authent-cas.php","2.x\/authent-cas\/fr.dict.authent-cas.php"],"version_db":"","version_code":"2.7.10","install":{"flag":2,"message":"the module is part of the application"}},"authent-external":{"label":"External user authentication","category":"authentication","dependencies":[],"mandatory":false,"visible":true,"datamodel":["model.authent-external.php"],"data.struct":[],"data.sample":[],"doc.manual_setup":"","doc.more_information":"","settings":[],"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/authent-external","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/authent-external\/module.authent-external.php","dictionary":["2.x\/authent-external\/fr.dict.authent-external.php","2.x\/authent-external\/de.dict.authent-external.php","2.x\/authent-external\/zh_cn.dict.authent-external.php","2.x\/authent-external\/tr.dict.authent-external.php","2.x\/authent-external\/pt_br.dict.authent-external.php","2.x\/authent-external\/da.dict.authent-external.php","2.x\/authent-external\/ru.dict.authent-external.php","2.x\/authent-external\/cs.dict.authent-external.php","2.x\/authent-external\/it.dict.authent-external.php","2.x\/authent-external\/en.dict.authent-external.php","2.x\/authent-external\/hu.dict.authent-external.php","2.x\/authent-external\/sk.dict.authent-external.php","2.x\/authent-external\/ja.dict.authent-external.php","2.x\/authent-external\/nl.dict.authent-external.php","2.x\/authent-external\/es_cr.dict.authent-external.php"],"version_db":"","version_code":"2.7.10","install":{"flag":1,"message":""}},"authent-ldap":{"label":"User authentication based on LDAP","category":"authentication","dependencies":[],"mandatory":false,"visible":true,"datamodel":["model.authent-ldap.php"],"data.struct":[],"data.sample":[],"doc.manual_setup":"","doc.more_information":"","settings":{"host":"localhost","port":389,"default_user":"","default_pwd":"","base_dn":"dc=yourcompany,dc=com","user_query":"(&(uid=%1$s)(inetuserstatus=ACTIVE))","options":{"17":3,"8":0},"start_tls":false,"debug":false},"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/authent-ldap","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/authent-ldap\/module.authent-ldap.php","dictionary":["2.x\/authent-ldap\/en.dict.authent-ldap.php","2.x\/authent-ldap\/ru.dict.authent-ldap.php","2.x\/authent-ldap\/cs.dict.authent-ldap.php","2.x\/authent-ldap\/es_cr.dict.authent-ldap.php","2.x\/authent-ldap\/zh_cn.dict.authent-ldap.php","2.x\/authent-ldap\/pt_br.dict.authent-ldap.php","2.x\/authent-ldap\/it.dict.authent-ldap.php","2.x\/authent-ldap\/tr.dict.authent-ldap.php","2.x\/authent-ldap\/fr.dict.authent-ldap.php","2.x\/authent-ldap\/de.dict.authent-ldap.php","2.x\/authent-ldap\/da.dict.authent-ldap.php","2.x\/authent-ldap\/nl.dict.authent-ldap.php","2.x\/authent-ldap\/hu.dict.authent-ldap.php","2.x\/authent-ldap\/sk.dict.authent-ldap.php","2.x\/authent-ldap\/ja.dict.authent-ldap.php"],"version_db":"","version_code":"2.7.10","install":{"flag":1,"message":""}},"authent-local":{"label":"User authentication based on the local DB","category":"authentication","dependencies":[],"mandatory":true,"visible":true,"datamodel":["model.authent-local.php"],"data.struct":[],"data.sample":[],"doc.manual_setup":"","doc.more_information":"","settings":[],"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/authent-local","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/authent-local\/module.authent-local.php","dictionary":["2.x\/authent-local\/hu.dict.authent-local.php","2.x\/authent-local\/de.dict.authent-local.php","2.x\/authent-local\/ja.dict.authent-local.php","2.x\/authent-local\/fr.dict.authent-local.php","2.x\/authent-local\/es_cr.dict.authent-local.php","2.x\/authent-local\/it.dict.authent-local.php","2.x\/authent-local\/tr.dict.authent-local.php","2.x\/authent-local\/da.dict.authent-local.php","2.x\/authent-local\/sk.dict.authent-local.php","2.x\/authent-local\/ru.dict.authent-local.php","2.x\/authent-local\/nl.dict.authent-local.php","2.x\/authent-local\/zh_cn.dict.authent-local.php","2.x\/authent-local\/cs.dict.authent-local.php","2.x\/authent-local\/en.dict.authent-local.php","2.x\/authent-local\/pt_br.dict.authent-local.php"],"version_db":"","version_code":"2.7.10","install":{"flag":2,"message":"the module is part of the application"}},"combodo-db-tools":{"label":"Database maintenance tools","category":"business","dependencies":[],"mandatory":false,"visible":true,"datamodel":["model.combodo-db-tools.php","src\/Service\/DBToolsUtils.php","src\/Service\/DBAnalyzerUtils.php"],"webservice":[],"data.struct":[],"data.sample":[],"doc.manual_setup":"","doc.more_information":"","settings":[],"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/combodo-db-tools","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/combodo-db-tools\/module.combodo-db-tools.php","dictionary":["2.x\/combodo-db-tools\/en.dict.combodo-db-tools.php","2.x\/combodo-db-tools\/pt_br.dict.combodo-db-tools.php","2.x\/combodo-db-tools\/zh_cn.dict.combodo-db-tools.php","2.x\/combodo-db-tools\/nl.dict.combodo-db-tools.php","2.x\/combodo-db-tools\/ru.dict.combodo-db-tools.php","2.x\/combodo-db-tools\/es_cr.dict.combodo-db-tools.php","2.x\/combodo-db-tools\/tr.dict.combodo-db-tools.php","2.x\/combodo-db-tools\/da.dict.combodo-db-tools.php","2.x\/combodo-db-tools\/ja.dict.combodo-db-tools.php","2.x\/combodo-db-tools\/de.dict.combodo-db-tools.php","2.x\/combodo-db-tools\/hu.dict.combodo-db-tools.php","2.x\/combodo-db-tools\/fr.dict.combodo-db-tools.php","2.x\/combodo-db-tools\/it.dict.combodo-db-tools.php","2.x\/combodo-db-tools\/sk.dict.combodo-db-tools.php","2.x\/combodo-db-tools\/cs.dict.combodo-db-tools.php"],"version_db":"","version_code":"2.7.10","install":{"flag":1,"message":""}},"combodo-monitoring":{"label":"Combodo Monitoring","category":"monitoring","dependencies":[],"mandatory":false,"visible":true,"datamodel":["vendor\/autoload.php"],"webservice":[],"data.struct":[],"data.sample":[],"doc.manual_setup":"","doc.more_information":"","settings":[],"itop_version":"1.0.2","root_dir":"\/var\/www\/html\/iTop\/extensions\/combodo-monitoring","module_file":"\/var\/www\/html\/iTop\/extensions\/combodo-monitoring\/module.combodo-monitoring.php","version_db":"","version_code":"1.0.7","install":{"flag":1,"message":""}},"itop-attachments":{"label":"Tickets Attachments","category":"business","dependencies":[],"mandatory":false,"visible":true,"installer":"AttachmentInstaller","datamodel":["model.itop-attachments.php","main.itop-attachments.php","renderers.itop-attachments.php"],"webservice":[],"dictionary":["2.x\/itop-attachments\/cs.dict.itop-attachments.php","2.x\/itop-attachments\/ja.dict.itop-attachments.php","2.x\/itop-attachments\/es_cr.dict.itop-attachments.php","2.x\/itop-attachments\/ru.dict.itop-attachments.php","2.x\/itop-attachments\/it.dict.itop-attachments.php","2.x\/itop-attachments\/zh_cn.dict.itop-attachments.php","2.x\/itop-attachments\/hu.dict.itop-attachments.php","2.x\/itop-attachments\/da.dict.itop-attachments.php","2.x\/itop-attachments\/en.dict.itop-attachments.php","2.x\/itop-attachments\/sk.dict.itop-attachments.php","2.x\/itop-attachments\/pt_br.dict.itop-attachments.php","2.x\/itop-attachments\/fr.dict.itop-attachments.php","2.x\/itop-attachments\/de.dict.itop-attachments.php","2.x\/itop-attachments\/tr.dict.itop-attachments.php","2.x\/itop-attachments\/nl.dict.itop-attachments.php"],"data.struct":[],"data.sample":[],"doc.manual_setup":"","doc.more_information":"","settings":{"allowed_classes":["Ticket"],"position":"relations","preview_max_width":290},"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-attachments","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-attachments\/module.itop-attachments.php","version_db":"","version_code":"2.7.10","install":{"flag":1,"message":""}},"itop-backup":{"label":"Backup utilities","category":"Application management","dependencies":[],"mandatory":true,"visible":false,"datamodel":["main.itop-backup.php","model.itop-backup.php"],"webservice":[],"dictionary":["en.dict.itop-backup.php","fr.dict.itop-backup.php","2.x\/itop-backup\/cs.dict.itop-backup.php","2.x\/itop-backup\/es_cr.dict.itop-backup.php","2.x\/itop-backup\/fr.dict.itop-backup.php","2.x\/itop-backup\/de.dict.itop-backup.php","2.x\/itop-backup\/ja.dict.itop-backup.php","2.x\/itop-backup\/en.dict.itop-backup.php","2.x\/itop-backup\/hu.dict.itop-backup.php","2.x\/itop-backup\/nl.dict.itop-backup.php","2.x\/itop-backup\/it.dict.itop-backup.php","2.x\/itop-backup\/sk.dict.itop-backup.php","2.x\/itop-backup\/ru.dict.itop-backup.php","2.x\/itop-backup\/tr.dict.itop-backup.php","2.x\/itop-backup\/pt_br.dict.itop-backup.php","2.x\/itop-backup\/da.dict.itop-backup.php","2.x\/itop-backup\/zh_cn.dict.itop-backup.php"],"data.struct":[],"data.sample":[],"doc.manual_setup":"","doc.more_information":"","settings":{"mysql_bindir":"","week_days":"monday, tuesday, wednesday, thursday, friday","time":"23:30","retention_count":5,"enabled":true,"itop_backup_incident":""},"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-backup","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-backup\/module.itop-backup.php","version_db":"","version_code":"2.7.10","install":{"flag":2,"message":"the module is part of the application"}},"itop-config-mgmt":{"label":"Configuration Management (CMDB)","category":"business","dependencies":[],"mandatory":true,"visible":true,"installer":"ConfigMgmtInstaller","datamodel":["model.itop-config-mgmt.php","main.itop-config-mgmt.php"],"data.struct":[],"data.sample":["data.sample.organizations.xml","data.sample.brand.xml","data.sample.model.xml","data.sample.osfamily.xml","data.sample.osversion.xml","data.sample.networkdevicetype.xml","data.sample.contacttype.xml","data.sample.locations.xml","data.sample.persons.xml","data.sample.teams.xml","data.sample.contactteam.xml","data.sample.servers.xml","data.sample.nw-devices.xml","data.sample.software.xml","data.sample.dbserver.xml","data.sample.dbschema.xml","data.sample.webserver.xml","data.sample.webapp.xml","data.sample.applications.xml","data.sample.applicationsolutionci.xml"],"doc.manual_setup":"","doc.more_information":"","settings":[],"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-config-mgmt","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-config-mgmt\/module.itop-config-mgmt.php","dictionary":["2.x\/itop-config-mgmt\/ru.dict.itop-config-mgmt.php","2.x\/itop-config-mgmt\/tr.dict.itop-config-mgmt.php","2.x\/itop-config-mgmt\/it.dict.itop-config-mgmt.php","2.x\/itop-config-mgmt\/de.dict.itop-config-mgmt.php","2.x\/itop-config-mgmt\/fr.dict.itop-config-mgmt.php","2.x\/itop-config-mgmt\/hu.dict.itop-config-mgmt.php","2.x\/itop-config-mgmt\/nl.dict.itop-config-mgmt.php","2.x\/itop-config-mgmt\/en.dict.itop-config-mgmt.php","2.x\/itop-config-mgmt\/cs.dict.itop-config-mgmt.php","2.x\/itop-config-mgmt\/ja.dict.itop-config-mgmt.php","2.x\/itop-config-mgmt\/sk.dict.itop-config-mgmt.php","2.x\/itop-config-mgmt\/zh_cn.dict.itop-config-mgmt.php","2.x\/itop-config-mgmt\/da.dict.itop-config-mgmt.php","2.x\/itop-config-mgmt\/pt_br.dict.itop-config-mgmt.php","2.x\/itop-config-mgmt\/es_cr.dict.itop-config-mgmt.php"],"version_db":"","version_code":"2.7.10","install":{"flag":2,"message":"the module is part of the application"}},"itop-config":{"label":"Configuration editor","category":"Application management","dependencies":[],"mandatory":true,"visible":false,"datamodel":["model.itop-config.php","src\/Validator\/ConfigNodesVisitor.php","src\/Validator\/iTopConfigAstValidator.php","src\/Validator\/iTopConfigSyntaxValidator.php"],"webservice":[],"dictionary":["en.dict.itop-config.php","fr.dict.itop-config.php","2.x\/itop-config\/ru.dict.itop-config.php","2.x\/itop-config\/en.dict.itop-config.php","2.x\/itop-config\/sk.dict.itop-config.php","2.x\/itop-config\/cs.dict.itop-config.php","2.x\/itop-config\/de.dict.itop-config.php","2.x\/itop-config\/zh_cn.dict.itop-config.php","2.x\/itop-config\/nl.dict.itop-config.php","2.x\/itop-config\/es_cr.dict.itop-config.php","2.x\/itop-config\/da.dict.itop-config.php","2.x\/itop-config\/ja.dict.itop-config.php","2.x\/itop-config\/pt_br.dict.itop-config.php","2.x\/itop-config\/tr.dict.itop-config.php","2.x\/itop-config\/hu.dict.itop-config.php","2.x\/itop-config\/it.dict.itop-config.php","2.x\/itop-config\/fr.dict.itop-config.php"],"data.struct":[],"data.sample":[],"doc.manual_setup":"","doc.more_information":"","settings":[],"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-config","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-config\/module.itop-config.php","version_db":"","version_code":"2.7.10","install":{"flag":2,"message":"the module is part of the application"}},"itop-datacenter-mgmt":{"label":"Datacenter Management","category":"business","dependencies":["itop-config-mgmt\/2.2.0"],"mandatory":false,"visible":true,"datamodel":["model.itop-datacenter-mgmt.php"],"webservice":[],"data.struct":[],"data.sample":["data.sample.racks.xml"],"doc.manual_setup":"","doc.more_information":"","settings":[],"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-datacenter-mgmt","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-datacenter-mgmt\/module.itop-datacenter-mgmt.php","dictionary":["2.x\/itop-datacenter-mgmt\/tr.dict.itop-datacenter-mgmt.php","2.x\/itop-datacenter-mgmt\/ja.dict.itop-datacenter-mgmt.php","2.x\/itop-datacenter-mgmt\/sk.dict.itop-datacenter-mgmt.php","2.x\/itop-datacenter-mgmt\/da.dict.itop-datacenter-mgmt.php","2.x\/itop-datacenter-mgmt\/es_cr.dict.itop-datacenter-mgmt.php","2.x\/itop-datacenter-mgmt\/ru.dict.itop-datacenter-mgmt.php","2.x\/itop-datacenter-mgmt\/en.dict.itop-datacenter-mgmt.php","2.x\/itop-datacenter-mgmt\/it.dict.itop-datacenter-mgmt.php","2.x\/itop-datacenter-mgmt\/zh_cn.dict.itop-datacenter-mgmt.php","2.x\/itop-datacenter-mgmt\/de.dict.itop-datacenter-mgmt.php","2.x\/itop-datacenter-mgmt\/hu.dict.itop-datacenter-mgmt.php","2.x\/itop-datacenter-mgmt\/cs.dict.itop-datacenter-mgmt.php","2.x\/itop-datacenter-mgmt\/fr.dict.itop-datacenter-mgmt.php","2.x\/itop-datacenter-mgmt\/pt_br.dict.itop-datacenter-mgmt.php","2.x\/itop-datacenter-mgmt\/nl.dict.itop-datacenter-mgmt.php"],"version_db":"","version_code":"2.7.10","install":{"flag":1,"message":""}},"itop-endusers-devices":{"label":"End-user Devices Management","category":"business","dependencies":["itop-config-mgmt\/2.2.0"],"mandatory":false,"visible":true,"installer":"EndUserMgmtInstaller","datamodel":["model.itop-endusers-devices.php"],"webservice":[],"data.struct":[],"data.sample":[],"doc.manual_setup":"","doc.more_information":"","settings":[],"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-endusers-devices","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-endusers-devices\/module.itop-endusers-devices.php","dictionary":["2.x\/itop-endusers-devices\/cs.dict.itop-endusers-devices.php","2.x\/itop-endusers-devices\/en.dict.itop-endusers-devices.php","2.x\/itop-endusers-devices\/ru.dict.itop-endusers-devices.php","2.x\/itop-endusers-devices\/it.dict.itop-endusers-devices.php","2.x\/itop-endusers-devices\/sk.dict.itop-endusers-devices.php","2.x\/itop-endusers-devices\/es_cr.dict.itop-endusers-devices.php","2.x\/itop-endusers-devices\/de.dict.itop-endusers-devices.php","2.x\/itop-endusers-devices\/fr.dict.itop-endusers-devices.php","2.x\/itop-endusers-devices\/tr.dict.itop-endusers-devices.php","2.x\/itop-endusers-devices\/hu.dict.itop-endusers-devices.php","2.x\/itop-endusers-devices\/da.dict.itop-endusers-devices.php","2.x\/itop-endusers-devices\/zh_cn.dict.itop-endusers-devices.php","2.x\/itop-endusers-devices\/nl.dict.itop-endusers-devices.php","2.x\/itop-endusers-devices\/ja.dict.itop-endusers-devices.php","2.x\/itop-endusers-devices\/pt_br.dict.itop-endusers-devices.php"],"version_db":"","version_code":"2.7.10","install":{"flag":1,"message":""}},"itop-files-information":{"label":"iTop files information","category":"business","dependencies":[],"mandatory":false,"visible":false,"datamodel":["model.itop-files-information.php","src\/Service\/FilesInformation.php","src\/Service\/FilesInformationException.php","src\/Service\/FilesInformationUtils.php","src\/Service\/FilesIntegrity.php"],"webservice":[],"data.struct":[],"data.sample":[],"doc.manual_setup":"","doc.more_information":"","settings":[],"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-files-information","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-files-information\/module.itop-files-information.php","dictionary":["2.x\/itop-files-information\/sk.dict.itop-files-information.php","2.x\/itop-files-information\/cs.dict.itop-files-information.php","2.x\/itop-files-information\/ja.dict.itop-files-information.php","2.x\/itop-files-information\/hu.dict.itop-files-information.php","2.x\/itop-files-information\/fr.dict.itop-files-information.php","2.x\/itop-files-information\/pt_br.dict.itop-files-information.php","2.x\/itop-files-information\/es_cr.dict.itop-files-information.php","2.x\/itop-files-information\/tr.dict.itop-files-information.php","2.x\/itop-files-information\/zh_cn.dict.itop-files-information.php","2.x\/itop-files-information\/en.dict.itop-files-information.php","2.x\/itop-files-information\/da.dict.itop-files-information.php","2.x\/itop-files-information\/de.dict.itop-files-information.php","2.x\/itop-files-information\/nl.dict.itop-files-information.php","2.x\/itop-files-information\/it.dict.itop-files-information.php","2.x\/itop-files-information\/ru.dict.itop-files-information.php"],"version_db":"","version_code":"2.7.10","install":{"flag":1,"message":""}},"itop-hub-connector":{"label":"iTop Hub Connector","category":"business","dependencies":["itop-config-mgmt\/2.4.0"],"mandatory":false,"visible":true,"datamodel":["menus.php","hubnewsroomprovider.class.inc.php","model.itop-hub-connector.php"],"webservice":[],"data.struct":[],"data.sample":[],"doc.manual_setup":"","doc.more_information":"","itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-hub-connector","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-hub-connector\/module.itop-hub-connector.php","dictionary":["2.x\/itop-hub-connector\/it.dict.itop-hub-connector.php","2.x\/itop-hub-connector\/zh_cn.dict.itop-hub-connector.php","2.x\/itop-hub-connector\/sk.dict.itop-hub-connector.php","2.x\/itop-hub-connector\/cs.dict.itop-hub-connector.php","2.x\/itop-hub-connector\/fr.dict.itop-hub-connector.php","2.x\/itop-hub-connector\/hu.dict.itop-hub-connector.php","2.x\/itop-hub-connector\/ru.dict.itop-hub-connector.php","2.x\/itop-hub-connector\/ja.dict.itop-hub-connector.php","2.x\/itop-hub-connector\/en.dict.itop-hub-connector.php","2.x\/itop-hub-connector\/es_cr.dict.itop-hub-connector.php","2.x\/itop-hub-connector\/tr.dict.itop-hub-connector.php","2.x\/itop-hub-connector\/nl.dict.itop-hub-connector.php","2.x\/itop-hub-connector\/de.dict.itop-hub-connector.php","2.x\/itop-hub-connector\/pt_br.dict.itop-hub-connector.php","2.x\/itop-hub-connector\/da.dict.itop-hub-connector.php"],"version_db":"","version_code":"2.7.10","install":{"flag":1,"message":""}},"itop-portal-base":{"label":"Portal Development Library","category":"Portal","dependencies":[],"mandatory":true,"visible":false,"datamodel":["portal\/vendor\/autoload.php","model.itop-portal-base.php"],"webservice":[],"dictionary":["2.x\/itop-portal-base\/hu.dict.itop-portal-base.php","2.x\/itop-portal-base\/ja.dict.itop-portal-base.php","2.x\/itop-portal-base\/cs.dict.itop-portal-base.php","2.x\/itop-portal-base\/zh_cn.dict.itop-portal-base.php","2.x\/itop-portal-base\/tr.dict.itop-portal-base.php","2.x\/itop-portal-base\/pt_br.dict.itop-portal-base.php","2.x\/itop-portal-base\/nl.dict.itop-portal-base.php","2.x\/itop-portal-base\/it.dict.itop-portal-base.php","2.x\/itop-portal-base\/es_cr.dict.itop-portal-base.php","2.x\/itop-portal-base\/fr.dict.itop-portal-base.php","2.x\/itop-portal-base\/ru.dict.itop-portal-base.php","2.x\/itop-portal-base\/de.dict.itop-portal-base.php","2.x\/itop-portal-base\/da.dict.itop-portal-base.php","2.x\/itop-portal-base\/en.dict.itop-portal-base.php","2.x\/itop-portal-base\/sk.dict.itop-portal-base.php"],"data.struct":[],"data.sample":[],"doc.manual_setup":"","doc.more_information":"","settings":[],"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-portal-base","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-portal-base\/module.itop-portal-base.php","version_db":"","version_code":"2.7.10","install":{"flag":2,"message":"the module is part of the application"}},"itop-portal":{"label":"Enhanced Customer Portal","category":"Portal","dependencies":["itop-portal-base\/2.7.0"],"mandatory":false,"visible":true,"datamodel":["main.itop-portal.php","model.itop-portal.php"],"webservice":[],"dictionary":[],"data.struct":[],"data.sample":[],"doc.manual_setup":"","doc.more_information":"","settings":[],"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-portal","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-portal\/module.itop-portal.php","version_db":"","version_code":"2.7.10","install":{"flag":1,"message":""}},"itop-profiles-itil":{"label":"Create standard ITIL profiles","category":"create_profiles","dependencies":[],"mandatory":true,"visible":false,"datamodel":["model.itop-profiles-itil.php"],"webservice":[],"data.struct":[],"data.sample":[],"doc.manual_setup":"","doc.more_information":"","settings":[],"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-profiles-itil","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-profiles-itil\/module.itop-profiles-itil.php","version_db":"","version_code":"2.7.10","install":{"flag":2,"message":"the module is part of the application"}},"itop-sla-computation":{"label":"SLA Computation","category":"sla","dependencies":[],"mandatory":true,"visible":false,"datamodel":["main.itop-sla-computation.php"],"webservice":[],"data.struct":[],"data.sample":[],"doc.manual_setup":"","doc.more_information":"","settings":[],"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-sla-computation","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-sla-computation\/module.itop-sla-computation.php","dictionary":["2.x\/itop-sla-computation\/de.dict.itop-sla-computation.php","2.x\/itop-sla-computation\/it.dict.itop-sla-computation.php","2.x\/itop-sla-computation\/tr.dict.itop-sla-computation.php","2.x\/itop-sla-computation\/nl.dict.itop-sla-computation.php","2.x\/itop-sla-computation\/zh_cn.dict.itop-sla-computation.php","2.x\/itop-sla-computation\/hu.dict.itop-sla-computation.php","2.x\/itop-sla-computation\/ja.dict.itop-sla-computation.php","2.x\/itop-sla-computation\/pt_br.dict.itop-sla-computation.php","2.x\/itop-sla-computation\/es_cr.dict.itop-sla-computation.php","2.x\/itop-sla-computation\/fr.dict.itop-sla-computation.php","2.x\/itop-sla-computation\/cs.dict.itop-sla-computation.php","2.x\/itop-sla-computation\/sk.dict.itop-sla-computation.php","2.x\/itop-sla-computation\/da.dict.itop-sla-computation.php","2.x\/itop-sla-computation\/en.dict.itop-sla-computation.php","2.x\/itop-sla-computation\/ru.dict.itop-sla-computation.php"],"version_db":"","version_code":"2.7.10","install":{"flag":2,"message":"the module is part of the application"}},"itop-storage-mgmt":{"label":"Advanced Storage Management","category":"business","dependencies":["itop-config-mgmt\/2.4.0"],"mandatory":false,"visible":true,"installer":"StorageMgmtInstaller","datamodel":["model.itop-storage-mgmt.php"],"webservice":[],"data.struct":[],"data.sample":[],"doc.manual_setup":"","doc.more_information":"","settings":[],"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-storage-mgmt","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-storage-mgmt\/module.itop-storage-mgmt.php","dictionary":["2.x\/itop-storage-mgmt\/en.dict.itop-storage-mgmt.php","2.x\/itop-storage-mgmt\/cs.dict.itop-storage-mgmt.php","2.x\/itop-storage-mgmt\/ja.dict.itop-storage-mgmt.php","2.x\/itop-storage-mgmt\/da.dict.itop-storage-mgmt.php","2.x\/itop-storage-mgmt\/pt_br.dict.itop-storage-mgmt.php","2.x\/itop-storage-mgmt\/it.dict.itop-storage-mgmt.php","2.x\/itop-storage-mgmt\/nl.dict.itop-storage-mgmt.php","2.x\/itop-storage-mgmt\/fr.dict.itop-storage-mgmt.php","2.x\/itop-storage-mgmt\/tr.dict.itop-storage-mgmt.php","2.x\/itop-storage-mgmt\/es_cr.dict.itop-storage-mgmt.php","2.x\/itop-storage-mgmt\/sk.dict.itop-storage-mgmt.php","2.x\/itop-storage-mgmt\/zh_cn.dict.itop-storage-mgmt.php","2.x\/itop-storage-mgmt\/de.dict.itop-storage-mgmt.php","2.x\/itop-storage-mgmt\/hu.dict.itop-storage-mgmt.php","2.x\/itop-storage-mgmt\/ru.dict.itop-storage-mgmt.php"],"version_db":"","version_code":"2.7.10","install":{"flag":1,"message":""}},"itop-tickets":{"label":"Tickets Management","category":"business","dependencies":["itop-config-mgmt\/2.4.0"],"mandatory":true,"visible":false,"installer":"TicketsInstaller","datamodel":["main.itop-tickets.php","model.itop-tickets.php"],"data.struct":[],"data.sample":[],"doc.manual_setup":"\/documentation\/itop-tickets.htm","doc.more_information":"","settings":[],"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-tickets","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-tickets\/module.itop-tickets.php","dictionary":["2.x\/itop-tickets\/cs.dict.itop-tickets.php","2.x\/itop-tickets\/da.dict.itop-tickets.php","2.x\/itop-tickets\/es_cr.dict.itop-tickets.php","2.x\/itop-tickets\/tr.dict.itop-tickets.php","2.x\/itop-tickets\/nl.dict.itop-tickets.php","2.x\/itop-tickets\/it.dict.itop-tickets.php","2.x\/itop-tickets\/en.dict.itop-tickets.php","2.x\/itop-tickets\/pt_br.dict.itop-tickets.php","2.x\/itop-tickets\/fr.dict.itop-tickets.php","2.x\/itop-tickets\/sk.dict.itop-tickets.php","2.x\/itop-tickets\/ja.dict.itop-tickets.php","2.x\/itop-tickets\/ru.dict.itop-tickets.php","2.x\/itop-tickets\/hu.dict.itop-tickets.php","2.x\/itop-tickets\/de.dict.itop-tickets.php","2.x\/itop-tickets\/zh_cn.dict.itop-tickets.php"],"version_db":"","version_code":"2.7.10","install":{"flag":2,"message":"the module is part of the application"}},"itop-virtualization-mgmt":{"label":"Virtualization Management","category":"business","dependencies":["itop-config-mgmt\/2.4.0"],"mandatory":false,"visible":true,"datamodel":["model.itop-virtualization-mgmt.php"],"webservice":[],"data.struct":[],"data.sample":["data.sample.farm.xml","data.sample.hypervisor.xml","data.sample.vm.xml","data.sample.dbserver.xml","data.sample.dbschema.xml","data.sample.webserver.xml","data.sample.webapp.xml","data.sample.applicationsolutionci.xml"],"doc.manual_setup":"","doc.more_information":"","settings":[],"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-virtualization-mgmt","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-virtualization-mgmt\/module.itop-virtualization-mgmt.php","dictionary":["2.x\/itop-virtualization-mgmt\/de.dict.itop-virtualization-mgmt.php","2.x\/itop-virtualization-mgmt\/nl.dict.itop-virtualization-mgmt.php","2.x\/itop-virtualization-mgmt\/ja.dict.itop-virtualization-mgmt.php","2.x\/itop-virtualization-mgmt\/zh_cn.dict.itop-virtualization-mgmt.php","2.x\/itop-virtualization-mgmt\/ru.dict.itop-virtualization-mgmt.php","2.x\/itop-virtualization-mgmt\/sk.dict.itop-virtualization-mgmt.php","2.x\/itop-virtualization-mgmt\/tr.dict.itop-virtualization-mgmt.php","2.x\/itop-virtualization-mgmt\/fr.dict.itop-virtualization-mgmt.php","2.x\/itop-virtualization-mgmt\/cs.dict.itop-virtualization-mgmt.php","2.x\/itop-virtualization-mgmt\/da.dict.itop-virtualization-mgmt.php","2.x\/itop-virtualization-mgmt\/hu.dict.itop-virtualization-mgmt.php","2.x\/itop-virtualization-mgmt\/es_cr.dict.itop-virtualization-mgmt.php","2.x\/itop-virtualization-mgmt\/en.dict.itop-virtualization-mgmt.php","2.x\/itop-virtualization-mgmt\/pt_br.dict.itop-virtualization-mgmt.php","2.x\/itop-virtualization-mgmt\/it.dict.itop-virtualization-mgmt.php"],"version_db":"","version_code":"2.7.10","install":{"flag":1,"message":""}},"itop-welcome-itil":{"label":"ITIL skin","category":"skin","dependencies":[],"mandatory":true,"visible":false,"datamodel":["model.itop-welcome-itil.php"],"webservice":[],"data.struct":[],"data.sample":[],"doc.manual_setup":"","doc.more_information":"","settings":[],"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-welcome-itil","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-welcome-itil\/module.itop-welcome-itil.php","dictionary":["2.x\/itop-welcome-itil\/da.dict.itop-welcome-itil.php","2.x\/itop-welcome-itil\/es_cr.dict.itop-welcome-itil.php","2.x\/itop-welcome-itil\/sk.dict.itop-welcome-itil.php","2.x\/itop-welcome-itil\/nl.dict.itop-welcome-itil.php","2.x\/itop-welcome-itil\/en.dict.itop-welcome-itil.php","2.x\/itop-welcome-itil\/fr.dict.itop-welcome-itil.php","2.x\/itop-welcome-itil\/ru.dict.itop-welcome-itil.php","2.x\/itop-welcome-itil\/ja.dict.itop-welcome-itil.php","2.x\/itop-welcome-itil\/de.dict.itop-welcome-itil.php","2.x\/itop-welcome-itil\/it.dict.itop-welcome-itil.php","2.x\/itop-welcome-itil\/tr.dict.itop-welcome-itil.php","2.x\/itop-welcome-itil\/hu.dict.itop-welcome-itil.php","2.x\/itop-welcome-itil\/zh_cn.dict.itop-welcome-itil.php","2.x\/itop-welcome-itil\/cs.dict.itop-welcome-itil.php","2.x\/itop-welcome-itil\/pt_br.dict.itop-welcome-itil.php"],"version_db":"","version_code":"2.7.10","install":{"flag":2,"message":"the module is part of the application"}},"itop-bridge-virtualization-storage":{"label":"Links between virtualization and storage","category":"business","dependencies":["itop-storage-mgmt\/2.2.0","itop-virtualization-mgmt\/2.2.0"],"mandatory":false,"visible":false,"auto_select":"SetupInfo::ModuleIsSelected(\"itop-storage-mgmt\") && SetupInfo::ModuleIsSelected(\"itop-virtualization-mgmt\")","datamodel":["model.itop-bridge-virtualization-storage.php"],"data.struct":[],"data.sample":[],"doc.manual_setup":"","doc.more_information":"","settings":[],"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-bridge-virtualization-storage","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-bridge-virtualization-storage\/module.itop-bridge-virtualization-storage.php","version_db":"","version_code":"2.7.10","install":{"flag":1,"message":""}},"itop-change-mgmt-itil":{"label":"Change Management ITIL","category":"business","dependencies":["itop-config-mgmt\/2.2.0","itop-tickets\/2.0.0"],"mandatory":false,"visible":true,"datamodel":["model.itop-change-mgmt-itil.php"],"data.struct":[],"data.sample":[],"doc.manual_setup":"","doc.more_information":"","settings":[],"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-change-mgmt-itil","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-change-mgmt-itil\/module.itop-change-mgmt-itil.php","dictionary":["2.x\/itop-change-mgmt-itil\/hu.dict.itop-change-mgmt-itil.php","2.x\/itop-change-mgmt-itil\/tr.dict.itop-change-mgmt-itil.php","2.x\/itop-change-mgmt-itil\/fr.dict.itop-change-mgmt-itil.php","2.x\/itop-change-mgmt-itil\/en.dict.itop-change-mgmt-itil.php","2.x\/itop-change-mgmt-itil\/cs.dict.itop-change-mgmt-itil.php","2.x\/itop-change-mgmt-itil\/da.dict.itop-change-mgmt-itil.php","2.x\/itop-change-mgmt-itil\/sk.dict.itop-change-mgmt-itil.php","2.x\/itop-change-mgmt-itil\/nl.dict.itop-change-mgmt-itil.php","2.x\/itop-change-mgmt-itil\/ja.dict.itop-change-mgmt-itil.php","2.x\/itop-change-mgmt-itil\/es_cr.dict.itop-change-mgmt-itil.php","2.x\/itop-change-mgmt-itil\/zh_cn.dict.itop-change-mgmt-itil.php","2.x\/itop-change-mgmt-itil\/de.dict.itop-change-mgmt-itil.php","2.x\/itop-change-mgmt-itil\/it.dict.itop-change-mgmt-itil.php","2.x\/itop-change-mgmt-itil\/ru.dict.itop-change-mgmt-itil.php","2.x\/itop-change-mgmt-itil\/pt_br.dict.itop-change-mgmt-itil.php"],"version_db":"","version_code":"2.7.10","install":{"flag":1,"message":""}},"itop-change-mgmt":{"label":"Change Management","category":"business","dependencies":["itop-config-mgmt\/2.2.0","itop-tickets\/2.0.0"],"mandatory":false,"visible":true,"installer":"ChangeManagementInstaller","datamodel":["model.itop-change-mgmt.php"],"data.struct":[],"data.sample":[],"doc.manual_setup":"","doc.more_information":"","settings":[],"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-change-mgmt","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-change-mgmt\/module.itop-change-mgmt.php","dictionary":["2.x\/itop-change-mgmt\/zh_cn.dict.itop-change-mgmt.php","2.x\/itop-change-mgmt\/en.dict.itop-change-mgmt.php","2.x\/itop-change-mgmt\/tr.dict.itop-change-mgmt.php","2.x\/itop-change-mgmt\/it.dict.itop-change-mgmt.php","2.x\/itop-change-mgmt\/cs.dict.itop-change-mgmt.php","2.x\/itop-change-mgmt\/hu.dict.itop-change-mgmt.php","2.x\/itop-change-mgmt\/ja.dict.itop-change-mgmt.php","2.x\/itop-change-mgmt\/da.dict.itop-change-mgmt.php","2.x\/itop-change-mgmt\/es_cr.dict.itop-change-mgmt.php","2.x\/itop-change-mgmt\/de.dict.itop-change-mgmt.php","2.x\/itop-change-mgmt\/nl.dict.itop-change-mgmt.php","2.x\/itop-change-mgmt\/sk.dict.itop-change-mgmt.php","2.x\/itop-change-mgmt\/ru.dict.itop-change-mgmt.php","2.x\/itop-change-mgmt\/pt_br.dict.itop-change-mgmt.php","2.x\/itop-change-mgmt\/fr.dict.itop-change-mgmt.php"],"version_db":"","version_code":"2.7.10","install":{"flag":1,"message":""}},"itop-core-update":{"label":"iTop Core Update","category":"business","dependencies":["itop-files-information\/2.7.0","combodo-db-tools\/2.7.0"],"mandatory":false,"visible":true,"datamodel":["model.itop-core-update.php","src\/Service\/RunTimeEnvironmentCoreUpdater.php","src\/Service\/CoreUpdater.php","src\/Controller\/UpdateController.php","src\/Controller\/AjaxController.php"],"webservice":[],"data.struct":[],"data.sample":[],"doc.manual_setup":"","doc.more_information":"","settings":[],"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-core-update","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-core-update\/module.itop-core-update.php","dictionary":["2.x\/itop-core-update\/ru.dict.itop-core-update.php","2.x\/itop-core-update\/de.dict.itop-core-update.php","2.x\/itop-core-update\/hu.dict.itop-core-update.php","2.x\/itop-core-update\/es_cr.dict.itop-core-update.php","2.x\/itop-core-update\/cs.dict.itop-core-update.php","2.x\/itop-core-update\/sk.dict.itop-core-update.php","2.x\/itop-core-update\/zh_cn.dict.itop-core-update.php","2.x\/itop-core-update\/fr.dict.itop-core-update.php","2.x\/itop-core-update\/da.dict.itop-core-update.php","2.x\/itop-core-update\/it.dict.itop-core-update.php","2.x\/itop-core-update\/pt_br.dict.itop-core-update.php","2.x\/itop-core-update\/en.dict.itop-core-update.php","2.x\/itop-core-update\/nl.dict.itop-core-update.php","2.x\/itop-core-update\/tr.dict.itop-core-update.php","2.x\/itop-core-update\/ja.dict.itop-core-update.php"],"version_db":"","version_code":"2.7.10","install":{"flag":1,"message":""}},"itop-incident-mgmt-itil":{"label":"Incident Management ITIL","category":"business","dependencies":["itop-config-mgmt\/2.4.0","itop-tickets\/2.4.0","itop-profiles-itil\/2.3.0"],"mandatory":false,"visible":true,"datamodel":["model.itop-incident-mgmt-itil.php"],"data.struct":[],"data.sample":[],"doc.manual_setup":"","doc.more_information":"","settings":[],"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-incident-mgmt-itil","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-incident-mgmt-itil\/module.itop-incident-mgmt-itil.php","dictionary":["2.x\/itop-incident-mgmt-itil\/da.dict.itop-incident-mgmt-itil.php","2.x\/itop-incident-mgmt-itil\/en.dict.itop-incident-mgmt-itil.php","2.x\/itop-incident-mgmt-itil\/de.dict.itop-incident-mgmt-itil.php","2.x\/itop-incident-mgmt-itil\/zh_cn.dict.itop-incident-mgmt-itil.php","2.x\/itop-incident-mgmt-itil\/sk.dict.itop-incident-mgmt-itil.php","2.x\/itop-incident-mgmt-itil\/fr.dict.itop-incident-mgmt-itil.php","2.x\/itop-incident-mgmt-itil\/hu.dict.itop-incident-mgmt-itil.php","2.x\/itop-incident-mgmt-itil\/ja.dict.itop-incident-mgmt-itil.php","2.x\/itop-incident-mgmt-itil\/cs.dict.itop-incident-mgmt-itil.php","2.x\/itop-incident-mgmt-itil\/nl.dict.itop-incident-mgmt-itil.php","2.x\/itop-incident-mgmt-itil\/ru.dict.itop-incident-mgmt-itil.php","2.x\/itop-incident-mgmt-itil\/tr.dict.itop-incident-mgmt-itil.php","2.x\/itop-incident-mgmt-itil\/it.dict.itop-incident-mgmt-itil.php","2.x\/itop-incident-mgmt-itil\/pt_br.dict.itop-incident-mgmt-itil.php","2.x\/itop-incident-mgmt-itil\/es_cr.dict.itop-incident-mgmt-itil.php"],"version_db":"","version_code":"2.7.10","install":{"flag":1,"message":""}},"itop-knownerror-mgmt":{"label":"Known Errors Database","category":"business","dependencies":["itop-config-mgmt\/2.2.0","itop-tickets\/2.3.0"],"mandatory":false,"visible":true,"installer":"KnownErrorMgmtInstaller","datamodel":["model.itop-knownerror-mgmt.php"],"data.struct":[],"data.sample":["data.sample.faq-domains.xml"],"doc.manual_setup":"","doc.more_information":"","settings":[],"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-knownerror-mgmt","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-knownerror-mgmt\/module.itop-knownerror-mgmt.php","dictionary":["2.x\/itop-knownerror-mgmt\/hu.dict.itop-knownerror-mgmt.php","2.x\/itop-knownerror-mgmt\/nl.dict.itop-knownerror-mgmt.php","2.x\/itop-knownerror-mgmt\/cs.dict.itop-knownerror-mgmt.php","2.x\/itop-knownerror-mgmt\/es_cr.dict.itop-knownerror-mgmt.php","2.x\/itop-knownerror-mgmt\/fr.dict.itop-knownerror-mgmt.php","2.x\/itop-knownerror-mgmt\/ru.dict.itop-knownerror-mgmt.php","2.x\/itop-knownerror-mgmt\/en.dict.itop-knownerror-mgmt.php","2.x\/itop-knownerror-mgmt\/da.dict.itop-knownerror-mgmt.php","2.x\/itop-knownerror-mgmt\/it.dict.itop-knownerror-mgmt.php","2.x\/itop-knownerror-mgmt\/sk.dict.itop-knownerror-mgmt.php","2.x\/itop-knownerror-mgmt\/pt_br.dict.itop-knownerror-mgmt.php","2.x\/itop-knownerror-mgmt\/tr.dict.itop-knownerror-mgmt.php","2.x\/itop-knownerror-mgmt\/zh_cn.dict.itop-knownerror-mgmt.php","2.x\/itop-knownerror-mgmt\/de.dict.itop-knownerror-mgmt.php","2.x\/itop-knownerror-mgmt\/ja.dict.itop-knownerror-mgmt.php"],"version_db":"","version_code":"2.7.10","install":{"flag":1,"message":""}},"itop-oauth-client":{"label":"OAuth 2.0 client","category":"business","dependencies":["itop-welcome-itil\/2.7.7,"],"mandatory":false,"visible":true,"datamodel":["vendor\/autoload.php","model.itop-oauth-client.php","src\/Service\/PopupMenuExtension.php","src\/Service\/ApplicationUIExtension.php"],"webservice":[],"data.struct":[],"data.sample":[],"doc.manual_setup":"","doc.more_information":"","settings":[],"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-oauth-client","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-oauth-client\/module.itop-oauth-client.php","dictionary":["2.x\/itop-oauth-client\/tr.dict.itop-oauth-client.php","2.x\/itop-oauth-client\/fr.dict.itop-oauth-client.php","2.x\/itop-oauth-client\/it.dict.itop-oauth-client.php","2.x\/itop-oauth-client\/en.dict.itop-oauth-client.php","2.x\/itop-oauth-client\/cs.dict.itop-oauth-client.php","2.x\/itop-oauth-client\/sk.dict.itop-oauth-client.php","2.x\/itop-oauth-client\/ru.dict.itop-oauth-client.php","2.x\/itop-oauth-client\/zh_cn.dict.itop-oauth-client.php","2.x\/itop-oauth-client\/pt_br.dict.itop-oauth-client.php","2.x\/itop-oauth-client\/es_cr.dict.itop-oauth-client.php","2.x\/itop-oauth-client\/nl.dict.itop-oauth-client.php","2.x\/itop-oauth-client\/ja.dict.itop-oauth-client.php","2.x\/itop-oauth-client\/de.dict.itop-oauth-client.php","2.x\/itop-oauth-client\/hu.dict.itop-oauth-client.php","2.x\/itop-oauth-client\/da.dict.itop-oauth-client.php"],"version_db":"","version_code":"2.7.10","install":{"flag":1,"message":""}},"itop-problem-mgmt":{"label":"Problem Management","category":"business","dependencies":["itop-config-mgmt\/2.2.0","itop-tickets\/2.0.0"],"mandatory":false,"visible":true,"datamodel":["model.itop-problem-mgmt.php"],"data.struct":[],"data.sample":[],"doc.manual_setup":"","doc.more_information":"","settings":[],"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-problem-mgmt","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-problem-mgmt\/module.itop-problem-mgmt.php","dictionary":["2.x\/itop-problem-mgmt\/tr.dict.itop-problem-mgmt.php","2.x\/itop-problem-mgmt\/cs.dict.itop-problem-mgmt.php","2.x\/itop-problem-mgmt\/sk.dict.itop-problem-mgmt.php","2.x\/itop-problem-mgmt\/pt_br.dict.itop-problem-mgmt.php","2.x\/itop-problem-mgmt\/es_cr.dict.itop-problem-mgmt.php","2.x\/itop-problem-mgmt\/da.dict.itop-problem-mgmt.php","2.x\/itop-problem-mgmt\/ru.dict.itop-problem-mgmt.php","2.x\/itop-problem-mgmt\/en.dict.itop-problem-mgmt.php","2.x\/itop-problem-mgmt\/hu.dict.itop-problem-mgmt.php","2.x\/itop-problem-mgmt\/fr.dict.itop-problem-mgmt.php","2.x\/itop-problem-mgmt\/nl.dict.itop-problem-mgmt.php","2.x\/itop-problem-mgmt\/ja.dict.itop-problem-mgmt.php","2.x\/itop-problem-mgmt\/de.dict.itop-problem-mgmt.php","2.x\/itop-problem-mgmt\/zh_cn.dict.itop-problem-mgmt.php","2.x\/itop-problem-mgmt\/it.dict.itop-problem-mgmt.php"],"version_db":"","version_code":"2.7.10","install":{"flag":1,"message":""}},"itop-request-mgmt-itil":{"label":"User request Management ITIL","category":"business","dependencies":["itop-config-mgmt\/2.4.0","itop-tickets\/2.4.0"],"mandatory":false,"visible":true,"datamodel":["model.itop-request-mgmt-itil.php","main.itop-request-mgmt-itil.php"],"data.struct":[],"data.sample":[],"doc.manual_setup":"","doc.more_information":"","settings":[],"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-request-mgmt-itil","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-request-mgmt-itil\/module.itop-request-mgmt-itil.php","dictionary":["2.x\/itop-request-mgmt-itil\/ja.dict.itop-request-mgmt-itil.php","2.x\/itop-request-mgmt-itil\/hu.dict.itop-request-mgmt-itil.php","2.x\/itop-request-mgmt-itil\/fr.dict.itop-request-mgmt-itil.php","2.x\/itop-request-mgmt-itil\/nl.dict.itop-request-mgmt-itil.php","2.x\/itop-request-mgmt-itil\/ru.dict.itop-request-mgmt-itil.php","2.x\/itop-request-mgmt-itil\/zh_cn.dict.itop-request-mgmt-itil.php","2.x\/itop-request-mgmt-itil\/it.dict.itop-request-mgmt-itil.php","2.x\/itop-request-mgmt-itil\/pt_br.dict.itop-request-mgmt-itil.php","2.x\/itop-request-mgmt-itil\/sk.dict.itop-request-mgmt-itil.php","2.x\/itop-request-mgmt-itil\/tr.dict.itop-request-mgmt-itil.php","2.x\/itop-request-mgmt-itil\/es_cr.dict.itop-request-mgmt-itil.php","2.x\/itop-request-mgmt-itil\/de.dict.itop-request-mgmt-itil.php","2.x\/itop-request-mgmt-itil\/en.dict.itop-request-mgmt-itil.php","2.x\/itop-request-mgmt-itil\/cs.dict.itop-request-mgmt-itil.php","2.x\/itop-request-mgmt-itil\/da.dict.itop-request-mgmt-itil.php"],"version_db":"","version_code":"2.7.10","install":{"flag":1,"message":""}},"itop-request-mgmt":{"label":"Simple Ticket Management","category":"business","dependencies":["itop-config-mgmt\/2.4.0","itop-tickets\/2.4.0"],"mandatory":false,"visible":true,"datamodel":["model.itop-request-mgmt.php","main.itop-request-mgmt.php"],"data.struct":[],"data.sample":[],"doc.manual_setup":"","doc.more_information":"","settings":[],"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-request-mgmt","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-request-mgmt\/module.itop-request-mgmt.php","dictionary":["2.x\/itop-request-mgmt\/tr.dict.itop-request-mgmt.php","2.x\/itop-request-mgmt\/da.dict.itop-request-mgmt.php","2.x\/itop-request-mgmt\/it.dict.itop-request-mgmt.php","2.x\/itop-request-mgmt\/fr.dict.itop-request-mgmt.php","2.x\/itop-request-mgmt\/ru.dict.itop-request-mgmt.php","2.x\/itop-request-mgmt\/cs.dict.itop-request-mgmt.php","2.x\/itop-request-mgmt\/hu.dict.itop-request-mgmt.php","2.x\/itop-request-mgmt\/en.dict.itop-request-mgmt.php","2.x\/itop-request-mgmt\/sk.dict.itop-request-mgmt.php","2.x\/itop-request-mgmt\/pt_br.dict.itop-request-mgmt.php","2.x\/itop-request-mgmt\/zh_cn.dict.itop-request-mgmt.php","2.x\/itop-request-mgmt\/de.dict.itop-request-mgmt.php","2.x\/itop-request-mgmt\/es_cr.dict.itop-request-mgmt.php","2.x\/itop-request-mgmt\/nl.dict.itop-request-mgmt.php","2.x\/itop-request-mgmt\/ja.dict.itop-request-mgmt.php"],"version_db":"","version_code":"2.7.10","install":{"flag":1,"message":""}},"itop-service-mgmt-provider":{"label":"Service Management for Service Providers","category":"business","dependencies":["itop-config-mgmt\/2.2.0","itop-tickets\/2.0.0"],"mandatory":false,"visible":true,"installer":"ServiceMgmtProviderInstaller","datamodel":["model.itop-service-mgmt-provider.php"],"data.struct":[],"data.sample":["data.sample.organizations.xml","data.sample.contracts.xml","data.sample.servicefamilies.xml","data.sample.services.xml","data.sample.serviceelements.xml","data.sample.sla.xml","data.sample.slt.xml","data.sample.sltsla.xml","data.sample.contractservice.xml","data.sample.deliverymodelcontact.xml"],"doc.manual_setup":"","doc.more_information":"","settings":[],"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-service-mgmt-provider","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-service-mgmt-provider\/module.itop-service-mgmt-provider.php","dictionary":["2.x\/itop-service-mgmt-provider\/zh_cn.dict.itop-service-mgmt-provider.php","2.x\/itop-service-mgmt-provider\/tr.dict.itop-service-mgmt-provider.php","2.x\/itop-service-mgmt-provider\/sk.dict.itop-service-mgmt-provider.php","2.x\/itop-service-mgmt-provider\/de.dict.itop-service-mgmt-provider.php","2.x\/itop-service-mgmt-provider\/ja.dict.itop-service-mgmt-provider.php","2.x\/itop-service-mgmt-provider\/ru.dict.itop-service-mgmt-provider.php","2.x\/itop-service-mgmt-provider\/fr.dict.itop-service-mgmt-provider.php","2.x\/itop-service-mgmt-provider\/hu.dict.itop-service-mgmt-provider.php","2.x\/itop-service-mgmt-provider\/en.dict.itop-service-mgmt-provider.php","2.x\/itop-service-mgmt-provider\/it.dict.itop-service-mgmt-provider.php","2.x\/itop-service-mgmt-provider\/cs.dict.itop-service-mgmt-provider.php","2.x\/itop-service-mgmt-provider\/es_cr.dict.itop-service-mgmt-provider.php","2.x\/itop-service-mgmt-provider\/pt_br.dict.itop-service-mgmt-provider.php","2.x\/itop-service-mgmt-provider\/da.dict.itop-service-mgmt-provider.php","2.x\/itop-service-mgmt-provider\/nl.dict.itop-service-mgmt-provider.php"],"version_db":"","version_code":"2.7.10","install":{"flag":1,"message":""}},"itop-service-mgmt":{"label":"Service Management","category":"business","dependencies":["itop-config-mgmt\/2.2.0","itop-tickets\/2.0.0"],"mandatory":false,"visible":true,"installer":"ServiceMgmtInstaller","datamodel":["model.itop-service-mgmt.php"],"data.struct":[],"data.sample":["data.sample.organizations.xml","data.sample.contracts.xml","data.sample.servicefamilies.xml","data.sample.services.xml","data.sample.serviceelements.xml","data.sample.sla.xml","data.sample.slt.xml","data.sample.sltsla.xml","data.sample.contractservice.xml","data.sample.deliverymodelcontact.xml"],"doc.manual_setup":"","doc.more_information":"","settings":[],"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-service-mgmt","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-service-mgmt\/module.itop-service-mgmt.php","dictionary":["2.x\/itop-service-mgmt\/hu.dict.itop-service-mgmt.php","2.x\/itop-service-mgmt\/es_cr.dict.itop-service-mgmt.php","2.x\/itop-service-mgmt\/nl.dict.itop-service-mgmt.php","2.x\/itop-service-mgmt\/sk.dict.itop-service-mgmt.php","2.x\/itop-service-mgmt\/it.dict.itop-service-mgmt.php","2.x\/itop-service-mgmt\/da.dict.itop-service-mgmt.php","2.x\/itop-service-mgmt\/zh_cn.dict.itop-service-mgmt.php","2.x\/itop-service-mgmt\/tr.dict.itop-service-mgmt.php","2.x\/itop-service-mgmt\/en.dict.itop-service-mgmt.php","2.x\/itop-service-mgmt\/cs.dict.itop-service-mgmt.php","2.x\/itop-service-mgmt\/de.dict.itop-service-mgmt.php","2.x\/itop-service-mgmt\/ja.dict.itop-service-mgmt.php","2.x\/itop-service-mgmt\/ru.dict.itop-service-mgmt.php","2.x\/itop-service-mgmt\/pt_br.dict.itop-service-mgmt.php","2.x\/itop-service-mgmt\/fr.dict.itop-service-mgmt.php"],"version_db":"","version_code":"2.7.10","install":{"flag":1,"message":""}},"itop-full-itil":{"label":"Bridge - Request management ITIL + Incident management ITIL","category":"business","dependencies":["itop-request-mgmt-itil\/2.3.0","itop-incident-mgmt-itil\/2.3.0"],"mandatory":false,"visible":false,"auto_select":"SetupInfo::ModuleIsSelected(\"itop-request-mgmt-itil\") && SetupInfo::ModuleIsSelected(\"itop-incident-mgmt-itil\")","datamodel":[],"webservice":[],"data.struct":[],"data.sample":[],"doc.manual_setup":"","doc.more_information":"","settings":[],"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-full-itil","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-full-itil\/module.itop-full-itil.php","version_db":"","version_code":"2.7.10","install":{"flag":1,"message":""}}} +{"_Root_":{"installed_version":"","available_version":"2.7.0-dev-svn","name_code":"iTop"},"authent-cas":{"label":"CAS SSO","category":"authentication","dependencies":[],"mandatory":true,"visible":true,"datamodel":["model.authent-cas.php","vendor\/autoload.php","src\/CASLoginExtension.php"],"webservice":[],"data.struct":[],"data.sample":[],"doc.manual_setup":"","doc.more_information":"","settings":{"cas_debug":false,"cas_host":"","cas_port":"","cas_context":"","cas_version":"","service_base_url":""},"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/authent-cas","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/authent-cas\/module.authent-cas.php","dictionary":["2.x\/authent-cas\/de.dict.authent-cas.php","2.x\/authent-cas\/cs.dict.authent-cas.php","2.x\/authent-cas\/nl.dict.authent-cas.php","2.x\/authent-cas\/da.dict.authent-cas.php","2.x\/authent-cas\/tr.dict.authent-cas.php","2.x\/authent-cas\/ru.dict.authent-cas.php","2.x\/authent-cas\/ja.dict.authent-cas.php","2.x\/authent-cas\/es_cr.dict.authent-cas.php","2.x\/authent-cas\/it.dict.authent-cas.php","2.x\/authent-cas\/pt_br.dict.authent-cas.php","2.x\/authent-cas\/sk.dict.authent-cas.php","2.x\/authent-cas\/hu.dict.authent-cas.php","2.x\/authent-cas\/zh_cn.dict.authent-cas.php","2.x\/authent-cas\/en.dict.authent-cas.php","2.x\/authent-cas\/fr.dict.authent-cas.php"],"installed_version":"","available_version":"2.7.10","install":{"flag":2,"message":"the module is part of the application"}},"authent-external":{"label":"External user authentication","category":"authentication","dependencies":[],"mandatory":false,"visible":true,"datamodel":["model.authent-external.php"],"data.struct":[],"data.sample":[],"doc.manual_setup":"","doc.more_information":"","settings":[],"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/authent-external","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/authent-external\/module.authent-external.php","dictionary":["2.x\/authent-external\/fr.dict.authent-external.php","2.x\/authent-external\/de.dict.authent-external.php","2.x\/authent-external\/zh_cn.dict.authent-external.php","2.x\/authent-external\/tr.dict.authent-external.php","2.x\/authent-external\/pt_br.dict.authent-external.php","2.x\/authent-external\/da.dict.authent-external.php","2.x\/authent-external\/ru.dict.authent-external.php","2.x\/authent-external\/cs.dict.authent-external.php","2.x\/authent-external\/it.dict.authent-external.php","2.x\/authent-external\/en.dict.authent-external.php","2.x\/authent-external\/hu.dict.authent-external.php","2.x\/authent-external\/sk.dict.authent-external.php","2.x\/authent-external\/ja.dict.authent-external.php","2.x\/authent-external\/nl.dict.authent-external.php","2.x\/authent-external\/es_cr.dict.authent-external.php"],"installed_version":"","available_version":"2.7.10","install":{"flag":1,"message":""}},"authent-ldap":{"label":"User authentication based on LDAP","category":"authentication","dependencies":[],"mandatory":false,"visible":true,"datamodel":["model.authent-ldap.php"],"data.struct":[],"data.sample":[],"doc.manual_setup":"","doc.more_information":"","settings":{"host":"localhost","port":389,"default_user":"","default_pwd":"","base_dn":"dc=yourcompany,dc=com","user_query":"(&(uid=%1$s)(inetuserstatus=ACTIVE))","options":{"17":3,"8":0},"start_tls":false,"debug":false},"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/authent-ldap","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/authent-ldap\/module.authent-ldap.php","dictionary":["2.x\/authent-ldap\/en.dict.authent-ldap.php","2.x\/authent-ldap\/ru.dict.authent-ldap.php","2.x\/authent-ldap\/cs.dict.authent-ldap.php","2.x\/authent-ldap\/es_cr.dict.authent-ldap.php","2.x\/authent-ldap\/zh_cn.dict.authent-ldap.php","2.x\/authent-ldap\/pt_br.dict.authent-ldap.php","2.x\/authent-ldap\/it.dict.authent-ldap.php","2.x\/authent-ldap\/tr.dict.authent-ldap.php","2.x\/authent-ldap\/fr.dict.authent-ldap.php","2.x\/authent-ldap\/de.dict.authent-ldap.php","2.x\/authent-ldap\/da.dict.authent-ldap.php","2.x\/authent-ldap\/nl.dict.authent-ldap.php","2.x\/authent-ldap\/hu.dict.authent-ldap.php","2.x\/authent-ldap\/sk.dict.authent-ldap.php","2.x\/authent-ldap\/ja.dict.authent-ldap.php"],"installed_version":"","available_version":"2.7.10","install":{"flag":1,"message":""}},"authent-local":{"label":"User authentication based on the local DB","category":"authentication","dependencies":[],"mandatory":true,"visible":true,"datamodel":["model.authent-local.php"],"data.struct":[],"data.sample":[],"doc.manual_setup":"","doc.more_information":"","settings":[],"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/authent-local","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/authent-local\/module.authent-local.php","dictionary":["2.x\/authent-local\/hu.dict.authent-local.php","2.x\/authent-local\/de.dict.authent-local.php","2.x\/authent-local\/ja.dict.authent-local.php","2.x\/authent-local\/fr.dict.authent-local.php","2.x\/authent-local\/es_cr.dict.authent-local.php","2.x\/authent-local\/it.dict.authent-local.php","2.x\/authent-local\/tr.dict.authent-local.php","2.x\/authent-local\/da.dict.authent-local.php","2.x\/authent-local\/sk.dict.authent-local.php","2.x\/authent-local\/ru.dict.authent-local.php","2.x\/authent-local\/nl.dict.authent-local.php","2.x\/authent-local\/zh_cn.dict.authent-local.php","2.x\/authent-local\/cs.dict.authent-local.php","2.x\/authent-local\/en.dict.authent-local.php","2.x\/authent-local\/pt_br.dict.authent-local.php"],"installed_version":"","available_version":"2.7.10","install":{"flag":2,"message":"the module is part of the application"}},"combodo-db-tools":{"label":"Database maintenance tools","category":"business","dependencies":[],"mandatory":false,"visible":true,"datamodel":["model.combodo-db-tools.php","src\/Service\/DBToolsUtils.php","src\/Service\/DBAnalyzerUtils.php"],"webservice":[],"data.struct":[],"data.sample":[],"doc.manual_setup":"","doc.more_information":"","settings":[],"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/combodo-db-tools","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/combodo-db-tools\/module.combodo-db-tools.php","dictionary":["2.x\/combodo-db-tools\/en.dict.combodo-db-tools.php","2.x\/combodo-db-tools\/pt_br.dict.combodo-db-tools.php","2.x\/combodo-db-tools\/zh_cn.dict.combodo-db-tools.php","2.x\/combodo-db-tools\/nl.dict.combodo-db-tools.php","2.x\/combodo-db-tools\/ru.dict.combodo-db-tools.php","2.x\/combodo-db-tools\/es_cr.dict.combodo-db-tools.php","2.x\/combodo-db-tools\/tr.dict.combodo-db-tools.php","2.x\/combodo-db-tools\/da.dict.combodo-db-tools.php","2.x\/combodo-db-tools\/ja.dict.combodo-db-tools.php","2.x\/combodo-db-tools\/de.dict.combodo-db-tools.php","2.x\/combodo-db-tools\/hu.dict.combodo-db-tools.php","2.x\/combodo-db-tools\/fr.dict.combodo-db-tools.php","2.x\/combodo-db-tools\/it.dict.combodo-db-tools.php","2.x\/combodo-db-tools\/sk.dict.combodo-db-tools.php","2.x\/combodo-db-tools\/cs.dict.combodo-db-tools.php"],"installed_version":"","available_version":"2.7.10","install":{"flag":1,"message":""}},"combodo-monitoring":{"label":"Combodo Monitoring","category":"monitoring","dependencies":[],"mandatory":false,"visible":true,"datamodel":["vendor\/autoload.php"],"webservice":[],"data.struct":[],"data.sample":[],"doc.manual_setup":"","doc.more_information":"","settings":[],"itop_version":"1.0.2","root_dir":"\/var\/www\/html\/iTop\/extensions\/combodo-monitoring","module_file":"\/var\/www\/html\/iTop\/extensions\/combodo-monitoring\/module.combodo-monitoring.php","installed_version":"","available_version":"1.0.7","install":{"flag":1,"message":""}},"itop-attachments":{"label":"Tickets Attachments","category":"business","dependencies":[],"mandatory":false,"visible":true,"installer":"AttachmentInstaller","datamodel":["model.itop-attachments.php","main.itop-attachments.php","renderers.itop-attachments.php"],"webservice":[],"dictionary":["2.x\/itop-attachments\/cs.dict.itop-attachments.php","2.x\/itop-attachments\/ja.dict.itop-attachments.php","2.x\/itop-attachments\/es_cr.dict.itop-attachments.php","2.x\/itop-attachments\/ru.dict.itop-attachments.php","2.x\/itop-attachments\/it.dict.itop-attachments.php","2.x\/itop-attachments\/zh_cn.dict.itop-attachments.php","2.x\/itop-attachments\/hu.dict.itop-attachments.php","2.x\/itop-attachments\/da.dict.itop-attachments.php","2.x\/itop-attachments\/en.dict.itop-attachments.php","2.x\/itop-attachments\/sk.dict.itop-attachments.php","2.x\/itop-attachments\/pt_br.dict.itop-attachments.php","2.x\/itop-attachments\/fr.dict.itop-attachments.php","2.x\/itop-attachments\/de.dict.itop-attachments.php","2.x\/itop-attachments\/tr.dict.itop-attachments.php","2.x\/itop-attachments\/nl.dict.itop-attachments.php"],"data.struct":[],"data.sample":[],"doc.manual_setup":"","doc.more_information":"","settings":{"allowed_classes":["Ticket"],"position":"relations","preview_max_width":290},"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-attachments","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-attachments\/module.itop-attachments.php","installed_version":"","available_version":"2.7.10","install":{"flag":1,"message":""}},"itop-backup":{"label":"Backup utilities","category":"Application management","dependencies":[],"mandatory":true,"visible":false,"datamodel":["main.itop-backup.php","model.itop-backup.php"],"webservice":[],"dictionary":["en.dict.itop-backup.php","fr.dict.itop-backup.php","2.x\/itop-backup\/cs.dict.itop-backup.php","2.x\/itop-backup\/es_cr.dict.itop-backup.php","2.x\/itop-backup\/fr.dict.itop-backup.php","2.x\/itop-backup\/de.dict.itop-backup.php","2.x\/itop-backup\/ja.dict.itop-backup.php","2.x\/itop-backup\/en.dict.itop-backup.php","2.x\/itop-backup\/hu.dict.itop-backup.php","2.x\/itop-backup\/nl.dict.itop-backup.php","2.x\/itop-backup\/it.dict.itop-backup.php","2.x\/itop-backup\/sk.dict.itop-backup.php","2.x\/itop-backup\/ru.dict.itop-backup.php","2.x\/itop-backup\/tr.dict.itop-backup.php","2.x\/itop-backup\/pt_br.dict.itop-backup.php","2.x\/itop-backup\/da.dict.itop-backup.php","2.x\/itop-backup\/zh_cn.dict.itop-backup.php"],"data.struct":[],"data.sample":[],"doc.manual_setup":"","doc.more_information":"","settings":{"mysql_bindir":"","week_days":"monday, tuesday, wednesday, thursday, friday","time":"23:30","retention_count":5,"enabled":true,"itop_backup_incident":""},"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-backup","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-backup\/module.itop-backup.php","installed_version":"","available_version":"2.7.10","install":{"flag":2,"message":"the module is part of the application"}},"itop-config-mgmt":{"label":"Configuration Management (CMDB)","category":"business","dependencies":[],"mandatory":true,"visible":true,"installer":"ConfigMgmtInstaller","datamodel":["model.itop-config-mgmt.php","main.itop-config-mgmt.php"],"data.struct":[],"data.sample":["data.sample.organizations.xml","data.sample.brand.xml","data.sample.model.xml","data.sample.osfamily.xml","data.sample.osversion.xml","data.sample.networkdevicetype.xml","data.sample.contacttype.xml","data.sample.locations.xml","data.sample.persons.xml","data.sample.teams.xml","data.sample.contactteam.xml","data.sample.servers.xml","data.sample.nw-devices.xml","data.sample.software.xml","data.sample.dbserver.xml","data.sample.dbschema.xml","data.sample.webserver.xml","data.sample.webapp.xml","data.sample.applications.xml","data.sample.applicationsolutionci.xml"],"doc.manual_setup":"","doc.more_information":"","settings":[],"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-config-mgmt","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-config-mgmt\/module.itop-config-mgmt.php","dictionary":["2.x\/itop-config-mgmt\/ru.dict.itop-config-mgmt.php","2.x\/itop-config-mgmt\/tr.dict.itop-config-mgmt.php","2.x\/itop-config-mgmt\/it.dict.itop-config-mgmt.php","2.x\/itop-config-mgmt\/de.dict.itop-config-mgmt.php","2.x\/itop-config-mgmt\/fr.dict.itop-config-mgmt.php","2.x\/itop-config-mgmt\/hu.dict.itop-config-mgmt.php","2.x\/itop-config-mgmt\/nl.dict.itop-config-mgmt.php","2.x\/itop-config-mgmt\/en.dict.itop-config-mgmt.php","2.x\/itop-config-mgmt\/cs.dict.itop-config-mgmt.php","2.x\/itop-config-mgmt\/ja.dict.itop-config-mgmt.php","2.x\/itop-config-mgmt\/sk.dict.itop-config-mgmt.php","2.x\/itop-config-mgmt\/zh_cn.dict.itop-config-mgmt.php","2.x\/itop-config-mgmt\/da.dict.itop-config-mgmt.php","2.x\/itop-config-mgmt\/pt_br.dict.itop-config-mgmt.php","2.x\/itop-config-mgmt\/es_cr.dict.itop-config-mgmt.php"],"installed_version":"","available_version":"2.7.10","install":{"flag":2,"message":"the module is part of the application"}},"itop-config":{"label":"Configuration editor","category":"Application management","dependencies":[],"mandatory":true,"visible":false,"datamodel":["model.itop-config.php","src\/Validator\/ConfigNodesVisitor.php","src\/Validator\/iTopConfigAstValidator.php","src\/Validator\/iTopConfigSyntaxValidator.php"],"webservice":[],"dictionary":["en.dict.itop-config.php","fr.dict.itop-config.php","2.x\/itop-config\/ru.dict.itop-config.php","2.x\/itop-config\/en.dict.itop-config.php","2.x\/itop-config\/sk.dict.itop-config.php","2.x\/itop-config\/cs.dict.itop-config.php","2.x\/itop-config\/de.dict.itop-config.php","2.x\/itop-config\/zh_cn.dict.itop-config.php","2.x\/itop-config\/nl.dict.itop-config.php","2.x\/itop-config\/es_cr.dict.itop-config.php","2.x\/itop-config\/da.dict.itop-config.php","2.x\/itop-config\/ja.dict.itop-config.php","2.x\/itop-config\/pt_br.dict.itop-config.php","2.x\/itop-config\/tr.dict.itop-config.php","2.x\/itop-config\/hu.dict.itop-config.php","2.x\/itop-config\/it.dict.itop-config.php","2.x\/itop-config\/fr.dict.itop-config.php"],"data.struct":[],"data.sample":[],"doc.manual_setup":"","doc.more_information":"","settings":[],"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-config","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-config\/module.itop-config.php","installed_version":"","available_version":"2.7.10","install":{"flag":2,"message":"the module is part of the application"}},"itop-datacenter-mgmt":{"label":"Datacenter Management","category":"business","dependencies":["itop-config-mgmt\/2.2.0"],"mandatory":false,"visible":true,"datamodel":["model.itop-datacenter-mgmt.php"],"webservice":[],"data.struct":[],"data.sample":["data.sample.racks.xml"],"doc.manual_setup":"","doc.more_information":"","settings":[],"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-datacenter-mgmt","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-datacenter-mgmt\/module.itop-datacenter-mgmt.php","dictionary":["2.x\/itop-datacenter-mgmt\/tr.dict.itop-datacenter-mgmt.php","2.x\/itop-datacenter-mgmt\/ja.dict.itop-datacenter-mgmt.php","2.x\/itop-datacenter-mgmt\/sk.dict.itop-datacenter-mgmt.php","2.x\/itop-datacenter-mgmt\/da.dict.itop-datacenter-mgmt.php","2.x\/itop-datacenter-mgmt\/es_cr.dict.itop-datacenter-mgmt.php","2.x\/itop-datacenter-mgmt\/ru.dict.itop-datacenter-mgmt.php","2.x\/itop-datacenter-mgmt\/en.dict.itop-datacenter-mgmt.php","2.x\/itop-datacenter-mgmt\/it.dict.itop-datacenter-mgmt.php","2.x\/itop-datacenter-mgmt\/zh_cn.dict.itop-datacenter-mgmt.php","2.x\/itop-datacenter-mgmt\/de.dict.itop-datacenter-mgmt.php","2.x\/itop-datacenter-mgmt\/hu.dict.itop-datacenter-mgmt.php","2.x\/itop-datacenter-mgmt\/cs.dict.itop-datacenter-mgmt.php","2.x\/itop-datacenter-mgmt\/fr.dict.itop-datacenter-mgmt.php","2.x\/itop-datacenter-mgmt\/pt_br.dict.itop-datacenter-mgmt.php","2.x\/itop-datacenter-mgmt\/nl.dict.itop-datacenter-mgmt.php"],"installed_version":"","available_version":"2.7.10","install":{"flag":1,"message":""}},"itop-endusers-devices":{"label":"End-user Devices Management","category":"business","dependencies":["itop-config-mgmt\/2.2.0"],"mandatory":false,"visible":true,"installer":"EndUserMgmtInstaller","datamodel":["model.itop-endusers-devices.php"],"webservice":[],"data.struct":[],"data.sample":[],"doc.manual_setup":"","doc.more_information":"","settings":[],"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-endusers-devices","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-endusers-devices\/module.itop-endusers-devices.php","dictionary":["2.x\/itop-endusers-devices\/cs.dict.itop-endusers-devices.php","2.x\/itop-endusers-devices\/en.dict.itop-endusers-devices.php","2.x\/itop-endusers-devices\/ru.dict.itop-endusers-devices.php","2.x\/itop-endusers-devices\/it.dict.itop-endusers-devices.php","2.x\/itop-endusers-devices\/sk.dict.itop-endusers-devices.php","2.x\/itop-endusers-devices\/es_cr.dict.itop-endusers-devices.php","2.x\/itop-endusers-devices\/de.dict.itop-endusers-devices.php","2.x\/itop-endusers-devices\/fr.dict.itop-endusers-devices.php","2.x\/itop-endusers-devices\/tr.dict.itop-endusers-devices.php","2.x\/itop-endusers-devices\/hu.dict.itop-endusers-devices.php","2.x\/itop-endusers-devices\/da.dict.itop-endusers-devices.php","2.x\/itop-endusers-devices\/zh_cn.dict.itop-endusers-devices.php","2.x\/itop-endusers-devices\/nl.dict.itop-endusers-devices.php","2.x\/itop-endusers-devices\/ja.dict.itop-endusers-devices.php","2.x\/itop-endusers-devices\/pt_br.dict.itop-endusers-devices.php"],"installed_version":"","available_version":"2.7.10","install":{"flag":1,"message":""}},"itop-files-information":{"label":"iTop files information","category":"business","dependencies":[],"mandatory":false,"visible":false,"datamodel":["model.itop-files-information.php","src\/Service\/FilesInformation.php","src\/Service\/FilesInformationException.php","src\/Service\/FilesInformationUtils.php","src\/Service\/FilesIntegrity.php"],"webservice":[],"data.struct":[],"data.sample":[],"doc.manual_setup":"","doc.more_information":"","settings":[],"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-files-information","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-files-information\/module.itop-files-information.php","dictionary":["2.x\/itop-files-information\/sk.dict.itop-files-information.php","2.x\/itop-files-information\/cs.dict.itop-files-information.php","2.x\/itop-files-information\/ja.dict.itop-files-information.php","2.x\/itop-files-information\/hu.dict.itop-files-information.php","2.x\/itop-files-information\/fr.dict.itop-files-information.php","2.x\/itop-files-information\/pt_br.dict.itop-files-information.php","2.x\/itop-files-information\/es_cr.dict.itop-files-information.php","2.x\/itop-files-information\/tr.dict.itop-files-information.php","2.x\/itop-files-information\/zh_cn.dict.itop-files-information.php","2.x\/itop-files-information\/en.dict.itop-files-information.php","2.x\/itop-files-information\/da.dict.itop-files-information.php","2.x\/itop-files-information\/de.dict.itop-files-information.php","2.x\/itop-files-information\/nl.dict.itop-files-information.php","2.x\/itop-files-information\/it.dict.itop-files-information.php","2.x\/itop-files-information\/ru.dict.itop-files-information.php"],"installed_version":"","available_version":"2.7.10","install":{"flag":1,"message":""}},"itop-hub-connector":{"label":"iTop Hub Connector","category":"business","dependencies":["itop-config-mgmt\/2.4.0"],"mandatory":false,"visible":true,"datamodel":["menus.php","hubnewsroomprovider.class.inc.php","model.itop-hub-connector.php"],"webservice":[],"data.struct":[],"data.sample":[],"doc.manual_setup":"","doc.more_information":"","itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-hub-connector","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-hub-connector\/module.itop-hub-connector.php","dictionary":["2.x\/itop-hub-connector\/it.dict.itop-hub-connector.php","2.x\/itop-hub-connector\/zh_cn.dict.itop-hub-connector.php","2.x\/itop-hub-connector\/sk.dict.itop-hub-connector.php","2.x\/itop-hub-connector\/cs.dict.itop-hub-connector.php","2.x\/itop-hub-connector\/fr.dict.itop-hub-connector.php","2.x\/itop-hub-connector\/hu.dict.itop-hub-connector.php","2.x\/itop-hub-connector\/ru.dict.itop-hub-connector.php","2.x\/itop-hub-connector\/ja.dict.itop-hub-connector.php","2.x\/itop-hub-connector\/en.dict.itop-hub-connector.php","2.x\/itop-hub-connector\/es_cr.dict.itop-hub-connector.php","2.x\/itop-hub-connector\/tr.dict.itop-hub-connector.php","2.x\/itop-hub-connector\/nl.dict.itop-hub-connector.php","2.x\/itop-hub-connector\/de.dict.itop-hub-connector.php","2.x\/itop-hub-connector\/pt_br.dict.itop-hub-connector.php","2.x\/itop-hub-connector\/da.dict.itop-hub-connector.php"],"installed_version":"","available_version":"2.7.10","install":{"flag":1,"message":""}},"itop-portal-base":{"label":"Portal Development Library","category":"Portal","dependencies":[],"mandatory":true,"visible":false,"datamodel":["portal\/vendor\/autoload.php","model.itop-portal-base.php"],"webservice":[],"dictionary":["2.x\/itop-portal-base\/hu.dict.itop-portal-base.php","2.x\/itop-portal-base\/ja.dict.itop-portal-base.php","2.x\/itop-portal-base\/cs.dict.itop-portal-base.php","2.x\/itop-portal-base\/zh_cn.dict.itop-portal-base.php","2.x\/itop-portal-base\/tr.dict.itop-portal-base.php","2.x\/itop-portal-base\/pt_br.dict.itop-portal-base.php","2.x\/itop-portal-base\/nl.dict.itop-portal-base.php","2.x\/itop-portal-base\/it.dict.itop-portal-base.php","2.x\/itop-portal-base\/es_cr.dict.itop-portal-base.php","2.x\/itop-portal-base\/fr.dict.itop-portal-base.php","2.x\/itop-portal-base\/ru.dict.itop-portal-base.php","2.x\/itop-portal-base\/de.dict.itop-portal-base.php","2.x\/itop-portal-base\/da.dict.itop-portal-base.php","2.x\/itop-portal-base\/en.dict.itop-portal-base.php","2.x\/itop-portal-base\/sk.dict.itop-portal-base.php"],"data.struct":[],"data.sample":[],"doc.manual_setup":"","doc.more_information":"","settings":[],"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-portal-base","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-portal-base\/module.itop-portal-base.php","installed_version":"","available_version":"2.7.10","install":{"flag":2,"message":"the module is part of the application"}},"itop-portal":{"label":"Enhanced Customer Portal","category":"Portal","dependencies":["itop-portal-base\/2.7.0"],"mandatory":false,"visible":true,"datamodel":["main.itop-portal.php","model.itop-portal.php"],"webservice":[],"dictionary":[],"data.struct":[],"data.sample":[],"doc.manual_setup":"","doc.more_information":"","settings":[],"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-portal","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-portal\/module.itop-portal.php","installed_version":"","available_version":"2.7.10","install":{"flag":1,"message":""}},"itop-profiles-itil":{"label":"Create standard ITIL profiles","category":"create_profiles","dependencies":[],"mandatory":true,"visible":false,"datamodel":["model.itop-profiles-itil.php"],"webservice":[],"data.struct":[],"data.sample":[],"doc.manual_setup":"","doc.more_information":"","settings":[],"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-profiles-itil","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-profiles-itil\/module.itop-profiles-itil.php","installed_version":"","available_version":"2.7.10","install":{"flag":2,"message":"the module is part of the application"}},"itop-sla-computation":{"label":"SLA Computation","category":"sla","dependencies":[],"mandatory":true,"visible":false,"datamodel":["main.itop-sla-computation.php"],"webservice":[],"data.struct":[],"data.sample":[],"doc.manual_setup":"","doc.more_information":"","settings":[],"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-sla-computation","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-sla-computation\/module.itop-sla-computation.php","dictionary":["2.x\/itop-sla-computation\/de.dict.itop-sla-computation.php","2.x\/itop-sla-computation\/it.dict.itop-sla-computation.php","2.x\/itop-sla-computation\/tr.dict.itop-sla-computation.php","2.x\/itop-sla-computation\/nl.dict.itop-sla-computation.php","2.x\/itop-sla-computation\/zh_cn.dict.itop-sla-computation.php","2.x\/itop-sla-computation\/hu.dict.itop-sla-computation.php","2.x\/itop-sla-computation\/ja.dict.itop-sla-computation.php","2.x\/itop-sla-computation\/pt_br.dict.itop-sla-computation.php","2.x\/itop-sla-computation\/es_cr.dict.itop-sla-computation.php","2.x\/itop-sla-computation\/fr.dict.itop-sla-computation.php","2.x\/itop-sla-computation\/cs.dict.itop-sla-computation.php","2.x\/itop-sla-computation\/sk.dict.itop-sla-computation.php","2.x\/itop-sla-computation\/da.dict.itop-sla-computation.php","2.x\/itop-sla-computation\/en.dict.itop-sla-computation.php","2.x\/itop-sla-computation\/ru.dict.itop-sla-computation.php"],"installed_version":"","available_version":"2.7.10","install":{"flag":2,"message":"the module is part of the application"}},"itop-storage-mgmt":{"label":"Advanced Storage Management","category":"business","dependencies":["itop-config-mgmt\/2.4.0"],"mandatory":false,"visible":true,"installer":"StorageMgmtInstaller","datamodel":["model.itop-storage-mgmt.php"],"webservice":[],"data.struct":[],"data.sample":[],"doc.manual_setup":"","doc.more_information":"","settings":[],"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-storage-mgmt","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-storage-mgmt\/module.itop-storage-mgmt.php","dictionary":["2.x\/itop-storage-mgmt\/en.dict.itop-storage-mgmt.php","2.x\/itop-storage-mgmt\/cs.dict.itop-storage-mgmt.php","2.x\/itop-storage-mgmt\/ja.dict.itop-storage-mgmt.php","2.x\/itop-storage-mgmt\/da.dict.itop-storage-mgmt.php","2.x\/itop-storage-mgmt\/pt_br.dict.itop-storage-mgmt.php","2.x\/itop-storage-mgmt\/it.dict.itop-storage-mgmt.php","2.x\/itop-storage-mgmt\/nl.dict.itop-storage-mgmt.php","2.x\/itop-storage-mgmt\/fr.dict.itop-storage-mgmt.php","2.x\/itop-storage-mgmt\/tr.dict.itop-storage-mgmt.php","2.x\/itop-storage-mgmt\/es_cr.dict.itop-storage-mgmt.php","2.x\/itop-storage-mgmt\/sk.dict.itop-storage-mgmt.php","2.x\/itop-storage-mgmt\/zh_cn.dict.itop-storage-mgmt.php","2.x\/itop-storage-mgmt\/de.dict.itop-storage-mgmt.php","2.x\/itop-storage-mgmt\/hu.dict.itop-storage-mgmt.php","2.x\/itop-storage-mgmt\/ru.dict.itop-storage-mgmt.php"],"installed_version":"","available_version":"2.7.10","install":{"flag":1,"message":""}},"itop-tickets":{"label":"Tickets Management","category":"business","dependencies":["itop-config-mgmt\/2.4.0"],"mandatory":true,"visible":false,"installer":"TicketsInstaller","datamodel":["main.itop-tickets.php","model.itop-tickets.php"],"data.struct":[],"data.sample":[],"doc.manual_setup":"\/documentation\/itop-tickets.htm","doc.more_information":"","settings":[],"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-tickets","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-tickets\/module.itop-tickets.php","dictionary":["2.x\/itop-tickets\/cs.dict.itop-tickets.php","2.x\/itop-tickets\/da.dict.itop-tickets.php","2.x\/itop-tickets\/es_cr.dict.itop-tickets.php","2.x\/itop-tickets\/tr.dict.itop-tickets.php","2.x\/itop-tickets\/nl.dict.itop-tickets.php","2.x\/itop-tickets\/it.dict.itop-tickets.php","2.x\/itop-tickets\/en.dict.itop-tickets.php","2.x\/itop-tickets\/pt_br.dict.itop-tickets.php","2.x\/itop-tickets\/fr.dict.itop-tickets.php","2.x\/itop-tickets\/sk.dict.itop-tickets.php","2.x\/itop-tickets\/ja.dict.itop-tickets.php","2.x\/itop-tickets\/ru.dict.itop-tickets.php","2.x\/itop-tickets\/hu.dict.itop-tickets.php","2.x\/itop-tickets\/de.dict.itop-tickets.php","2.x\/itop-tickets\/zh_cn.dict.itop-tickets.php"],"installed_version":"","available_version":"2.7.10","install":{"flag":2,"message":"the module is part of the application"}},"itop-virtualization-mgmt":{"label":"Virtualization Management","category":"business","dependencies":["itop-config-mgmt\/2.4.0"],"mandatory":false,"visible":true,"datamodel":["model.itop-virtualization-mgmt.php"],"webservice":[],"data.struct":[],"data.sample":["data.sample.farm.xml","data.sample.hypervisor.xml","data.sample.vm.xml","data.sample.dbserver.xml","data.sample.dbschema.xml","data.sample.webserver.xml","data.sample.webapp.xml","data.sample.applicationsolutionci.xml"],"doc.manual_setup":"","doc.more_information":"","settings":[],"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-virtualization-mgmt","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-virtualization-mgmt\/module.itop-virtualization-mgmt.php","dictionary":["2.x\/itop-virtualization-mgmt\/de.dict.itop-virtualization-mgmt.php","2.x\/itop-virtualization-mgmt\/nl.dict.itop-virtualization-mgmt.php","2.x\/itop-virtualization-mgmt\/ja.dict.itop-virtualization-mgmt.php","2.x\/itop-virtualization-mgmt\/zh_cn.dict.itop-virtualization-mgmt.php","2.x\/itop-virtualization-mgmt\/ru.dict.itop-virtualization-mgmt.php","2.x\/itop-virtualization-mgmt\/sk.dict.itop-virtualization-mgmt.php","2.x\/itop-virtualization-mgmt\/tr.dict.itop-virtualization-mgmt.php","2.x\/itop-virtualization-mgmt\/fr.dict.itop-virtualization-mgmt.php","2.x\/itop-virtualization-mgmt\/cs.dict.itop-virtualization-mgmt.php","2.x\/itop-virtualization-mgmt\/da.dict.itop-virtualization-mgmt.php","2.x\/itop-virtualization-mgmt\/hu.dict.itop-virtualization-mgmt.php","2.x\/itop-virtualization-mgmt\/es_cr.dict.itop-virtualization-mgmt.php","2.x\/itop-virtualization-mgmt\/en.dict.itop-virtualization-mgmt.php","2.x\/itop-virtualization-mgmt\/pt_br.dict.itop-virtualization-mgmt.php","2.x\/itop-virtualization-mgmt\/it.dict.itop-virtualization-mgmt.php"],"installed_version":"","available_version":"2.7.10","install":{"flag":1,"message":""}},"itop-welcome-itil":{"label":"ITIL skin","category":"skin","dependencies":[],"mandatory":true,"visible":false,"datamodel":["model.itop-welcome-itil.php"],"webservice":[],"data.struct":[],"data.sample":[],"doc.manual_setup":"","doc.more_information":"","settings":[],"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-welcome-itil","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-welcome-itil\/module.itop-welcome-itil.php","dictionary":["2.x\/itop-welcome-itil\/da.dict.itop-welcome-itil.php","2.x\/itop-welcome-itil\/es_cr.dict.itop-welcome-itil.php","2.x\/itop-welcome-itil\/sk.dict.itop-welcome-itil.php","2.x\/itop-welcome-itil\/nl.dict.itop-welcome-itil.php","2.x\/itop-welcome-itil\/en.dict.itop-welcome-itil.php","2.x\/itop-welcome-itil\/fr.dict.itop-welcome-itil.php","2.x\/itop-welcome-itil\/ru.dict.itop-welcome-itil.php","2.x\/itop-welcome-itil\/ja.dict.itop-welcome-itil.php","2.x\/itop-welcome-itil\/de.dict.itop-welcome-itil.php","2.x\/itop-welcome-itil\/it.dict.itop-welcome-itil.php","2.x\/itop-welcome-itil\/tr.dict.itop-welcome-itil.php","2.x\/itop-welcome-itil\/hu.dict.itop-welcome-itil.php","2.x\/itop-welcome-itil\/zh_cn.dict.itop-welcome-itil.php","2.x\/itop-welcome-itil\/cs.dict.itop-welcome-itil.php","2.x\/itop-welcome-itil\/pt_br.dict.itop-welcome-itil.php"],"installed_version":"","available_version":"2.7.10","install":{"flag":2,"message":"the module is part of the application"}},"itop-bridge-virtualization-storage":{"label":"Links between virtualization and storage","category":"business","dependencies":["itop-storage-mgmt\/2.2.0","itop-virtualization-mgmt\/2.2.0"],"mandatory":false,"visible":false,"auto_select":"SetupInfo::ModuleIsSelected(\"itop-storage-mgmt\") && SetupInfo::ModuleIsSelected(\"itop-virtualization-mgmt\")","datamodel":["model.itop-bridge-virtualization-storage.php"],"data.struct":[],"data.sample":[],"doc.manual_setup":"","doc.more_information":"","settings":[],"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-bridge-virtualization-storage","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-bridge-virtualization-storage\/module.itop-bridge-virtualization-storage.php","installed_version":"","available_version":"2.7.10","install":{"flag":1,"message":""}},"itop-change-mgmt-itil":{"label":"Change Management ITIL","category":"business","dependencies":["itop-config-mgmt\/2.2.0","itop-tickets\/2.0.0"],"mandatory":false,"visible":true,"datamodel":["model.itop-change-mgmt-itil.php"],"data.struct":[],"data.sample":[],"doc.manual_setup":"","doc.more_information":"","settings":[],"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-change-mgmt-itil","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-change-mgmt-itil\/module.itop-change-mgmt-itil.php","dictionary":["2.x\/itop-change-mgmt-itil\/hu.dict.itop-change-mgmt-itil.php","2.x\/itop-change-mgmt-itil\/tr.dict.itop-change-mgmt-itil.php","2.x\/itop-change-mgmt-itil\/fr.dict.itop-change-mgmt-itil.php","2.x\/itop-change-mgmt-itil\/en.dict.itop-change-mgmt-itil.php","2.x\/itop-change-mgmt-itil\/cs.dict.itop-change-mgmt-itil.php","2.x\/itop-change-mgmt-itil\/da.dict.itop-change-mgmt-itil.php","2.x\/itop-change-mgmt-itil\/sk.dict.itop-change-mgmt-itil.php","2.x\/itop-change-mgmt-itil\/nl.dict.itop-change-mgmt-itil.php","2.x\/itop-change-mgmt-itil\/ja.dict.itop-change-mgmt-itil.php","2.x\/itop-change-mgmt-itil\/es_cr.dict.itop-change-mgmt-itil.php","2.x\/itop-change-mgmt-itil\/zh_cn.dict.itop-change-mgmt-itil.php","2.x\/itop-change-mgmt-itil\/de.dict.itop-change-mgmt-itil.php","2.x\/itop-change-mgmt-itil\/it.dict.itop-change-mgmt-itil.php","2.x\/itop-change-mgmt-itil\/ru.dict.itop-change-mgmt-itil.php","2.x\/itop-change-mgmt-itil\/pt_br.dict.itop-change-mgmt-itil.php"],"installed_version":"","available_version":"2.7.10","install":{"flag":1,"message":""}},"itop-change-mgmt":{"label":"Change Management","category":"business","dependencies":["itop-config-mgmt\/2.2.0","itop-tickets\/2.0.0"],"mandatory":false,"visible":true,"installer":"ChangeManagementInstaller","datamodel":["model.itop-change-mgmt.php"],"data.struct":[],"data.sample":[],"doc.manual_setup":"","doc.more_information":"","settings":[],"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-change-mgmt","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-change-mgmt\/module.itop-change-mgmt.php","dictionary":["2.x\/itop-change-mgmt\/zh_cn.dict.itop-change-mgmt.php","2.x\/itop-change-mgmt\/en.dict.itop-change-mgmt.php","2.x\/itop-change-mgmt\/tr.dict.itop-change-mgmt.php","2.x\/itop-change-mgmt\/it.dict.itop-change-mgmt.php","2.x\/itop-change-mgmt\/cs.dict.itop-change-mgmt.php","2.x\/itop-change-mgmt\/hu.dict.itop-change-mgmt.php","2.x\/itop-change-mgmt\/ja.dict.itop-change-mgmt.php","2.x\/itop-change-mgmt\/da.dict.itop-change-mgmt.php","2.x\/itop-change-mgmt\/es_cr.dict.itop-change-mgmt.php","2.x\/itop-change-mgmt\/de.dict.itop-change-mgmt.php","2.x\/itop-change-mgmt\/nl.dict.itop-change-mgmt.php","2.x\/itop-change-mgmt\/sk.dict.itop-change-mgmt.php","2.x\/itop-change-mgmt\/ru.dict.itop-change-mgmt.php","2.x\/itop-change-mgmt\/pt_br.dict.itop-change-mgmt.php","2.x\/itop-change-mgmt\/fr.dict.itop-change-mgmt.php"],"installed_version":"","available_version":"2.7.10","install":{"flag":1,"message":""}},"itop-core-update":{"label":"iTop Core Update","category":"business","dependencies":["itop-files-information\/2.7.0","combodo-db-tools\/2.7.0"],"mandatory":false,"visible":true,"datamodel":["model.itop-core-update.php","src\/Service\/RunTimeEnvironmentCoreUpdater.php","src\/Service\/CoreUpdater.php","src\/Controller\/UpdateController.php","src\/Controller\/AjaxController.php"],"webservice":[],"data.struct":[],"data.sample":[],"doc.manual_setup":"","doc.more_information":"","settings":[],"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-core-update","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-core-update\/module.itop-core-update.php","dictionary":["2.x\/itop-core-update\/ru.dict.itop-core-update.php","2.x\/itop-core-update\/de.dict.itop-core-update.php","2.x\/itop-core-update\/hu.dict.itop-core-update.php","2.x\/itop-core-update\/es_cr.dict.itop-core-update.php","2.x\/itop-core-update\/cs.dict.itop-core-update.php","2.x\/itop-core-update\/sk.dict.itop-core-update.php","2.x\/itop-core-update\/zh_cn.dict.itop-core-update.php","2.x\/itop-core-update\/fr.dict.itop-core-update.php","2.x\/itop-core-update\/da.dict.itop-core-update.php","2.x\/itop-core-update\/it.dict.itop-core-update.php","2.x\/itop-core-update\/pt_br.dict.itop-core-update.php","2.x\/itop-core-update\/en.dict.itop-core-update.php","2.x\/itop-core-update\/nl.dict.itop-core-update.php","2.x\/itop-core-update\/tr.dict.itop-core-update.php","2.x\/itop-core-update\/ja.dict.itop-core-update.php"],"installed_version":"","available_version":"2.7.10","install":{"flag":1,"message":""}},"itop-incident-mgmt-itil":{"label":"Incident Management ITIL","category":"business","dependencies":["itop-config-mgmt\/2.4.0","itop-tickets\/2.4.0","itop-profiles-itil\/2.3.0"],"mandatory":false,"visible":true,"datamodel":["model.itop-incident-mgmt-itil.php"],"data.struct":[],"data.sample":[],"doc.manual_setup":"","doc.more_information":"","settings":[],"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-incident-mgmt-itil","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-incident-mgmt-itil\/module.itop-incident-mgmt-itil.php","dictionary":["2.x\/itop-incident-mgmt-itil\/da.dict.itop-incident-mgmt-itil.php","2.x\/itop-incident-mgmt-itil\/en.dict.itop-incident-mgmt-itil.php","2.x\/itop-incident-mgmt-itil\/de.dict.itop-incident-mgmt-itil.php","2.x\/itop-incident-mgmt-itil\/zh_cn.dict.itop-incident-mgmt-itil.php","2.x\/itop-incident-mgmt-itil\/sk.dict.itop-incident-mgmt-itil.php","2.x\/itop-incident-mgmt-itil\/fr.dict.itop-incident-mgmt-itil.php","2.x\/itop-incident-mgmt-itil\/hu.dict.itop-incident-mgmt-itil.php","2.x\/itop-incident-mgmt-itil\/ja.dict.itop-incident-mgmt-itil.php","2.x\/itop-incident-mgmt-itil\/cs.dict.itop-incident-mgmt-itil.php","2.x\/itop-incident-mgmt-itil\/nl.dict.itop-incident-mgmt-itil.php","2.x\/itop-incident-mgmt-itil\/ru.dict.itop-incident-mgmt-itil.php","2.x\/itop-incident-mgmt-itil\/tr.dict.itop-incident-mgmt-itil.php","2.x\/itop-incident-mgmt-itil\/it.dict.itop-incident-mgmt-itil.php","2.x\/itop-incident-mgmt-itil\/pt_br.dict.itop-incident-mgmt-itil.php","2.x\/itop-incident-mgmt-itil\/es_cr.dict.itop-incident-mgmt-itil.php"],"installed_version":"","available_version":"2.7.10","install":{"flag":1,"message":""}},"itop-knownerror-mgmt":{"label":"Known Errors Database","category":"business","dependencies":["itop-config-mgmt\/2.2.0","itop-tickets\/2.3.0"],"mandatory":false,"visible":true,"installer":"KnownErrorMgmtInstaller","datamodel":["model.itop-knownerror-mgmt.php"],"data.struct":[],"data.sample":["data.sample.faq-domains.xml"],"doc.manual_setup":"","doc.more_information":"","settings":[],"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-knownerror-mgmt","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-knownerror-mgmt\/module.itop-knownerror-mgmt.php","dictionary":["2.x\/itop-knownerror-mgmt\/hu.dict.itop-knownerror-mgmt.php","2.x\/itop-knownerror-mgmt\/nl.dict.itop-knownerror-mgmt.php","2.x\/itop-knownerror-mgmt\/cs.dict.itop-knownerror-mgmt.php","2.x\/itop-knownerror-mgmt\/es_cr.dict.itop-knownerror-mgmt.php","2.x\/itop-knownerror-mgmt\/fr.dict.itop-knownerror-mgmt.php","2.x\/itop-knownerror-mgmt\/ru.dict.itop-knownerror-mgmt.php","2.x\/itop-knownerror-mgmt\/en.dict.itop-knownerror-mgmt.php","2.x\/itop-knownerror-mgmt\/da.dict.itop-knownerror-mgmt.php","2.x\/itop-knownerror-mgmt\/it.dict.itop-knownerror-mgmt.php","2.x\/itop-knownerror-mgmt\/sk.dict.itop-knownerror-mgmt.php","2.x\/itop-knownerror-mgmt\/pt_br.dict.itop-knownerror-mgmt.php","2.x\/itop-knownerror-mgmt\/tr.dict.itop-knownerror-mgmt.php","2.x\/itop-knownerror-mgmt\/zh_cn.dict.itop-knownerror-mgmt.php","2.x\/itop-knownerror-mgmt\/de.dict.itop-knownerror-mgmt.php","2.x\/itop-knownerror-mgmt\/ja.dict.itop-knownerror-mgmt.php"],"installed_version":"","available_version":"2.7.10","install":{"flag":1,"message":""}},"itop-oauth-client":{"label":"OAuth 2.0 client","category":"business","dependencies":["itop-welcome-itil\/2.7.7,"],"mandatory":false,"visible":true,"datamodel":["vendor\/autoload.php","model.itop-oauth-client.php","src\/Service\/PopupMenuExtension.php","src\/Service\/ApplicationUIExtension.php"],"webservice":[],"data.struct":[],"data.sample":[],"doc.manual_setup":"","doc.more_information":"","settings":[],"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-oauth-client","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-oauth-client\/module.itop-oauth-client.php","dictionary":["2.x\/itop-oauth-client\/tr.dict.itop-oauth-client.php","2.x\/itop-oauth-client\/fr.dict.itop-oauth-client.php","2.x\/itop-oauth-client\/it.dict.itop-oauth-client.php","2.x\/itop-oauth-client\/en.dict.itop-oauth-client.php","2.x\/itop-oauth-client\/cs.dict.itop-oauth-client.php","2.x\/itop-oauth-client\/sk.dict.itop-oauth-client.php","2.x\/itop-oauth-client\/ru.dict.itop-oauth-client.php","2.x\/itop-oauth-client\/zh_cn.dict.itop-oauth-client.php","2.x\/itop-oauth-client\/pt_br.dict.itop-oauth-client.php","2.x\/itop-oauth-client\/es_cr.dict.itop-oauth-client.php","2.x\/itop-oauth-client\/nl.dict.itop-oauth-client.php","2.x\/itop-oauth-client\/ja.dict.itop-oauth-client.php","2.x\/itop-oauth-client\/de.dict.itop-oauth-client.php","2.x\/itop-oauth-client\/hu.dict.itop-oauth-client.php","2.x\/itop-oauth-client\/da.dict.itop-oauth-client.php"],"installed_version":"","available_version":"2.7.10","install":{"flag":1,"message":""}},"itop-problem-mgmt":{"label":"Problem Management","category":"business","dependencies":["itop-config-mgmt\/2.2.0","itop-tickets\/2.0.0"],"mandatory":false,"visible":true,"datamodel":["model.itop-problem-mgmt.php"],"data.struct":[],"data.sample":[],"doc.manual_setup":"","doc.more_information":"","settings":[],"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-problem-mgmt","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-problem-mgmt\/module.itop-problem-mgmt.php","dictionary":["2.x\/itop-problem-mgmt\/tr.dict.itop-problem-mgmt.php","2.x\/itop-problem-mgmt\/cs.dict.itop-problem-mgmt.php","2.x\/itop-problem-mgmt\/sk.dict.itop-problem-mgmt.php","2.x\/itop-problem-mgmt\/pt_br.dict.itop-problem-mgmt.php","2.x\/itop-problem-mgmt\/es_cr.dict.itop-problem-mgmt.php","2.x\/itop-problem-mgmt\/da.dict.itop-problem-mgmt.php","2.x\/itop-problem-mgmt\/ru.dict.itop-problem-mgmt.php","2.x\/itop-problem-mgmt\/en.dict.itop-problem-mgmt.php","2.x\/itop-problem-mgmt\/hu.dict.itop-problem-mgmt.php","2.x\/itop-problem-mgmt\/fr.dict.itop-problem-mgmt.php","2.x\/itop-problem-mgmt\/nl.dict.itop-problem-mgmt.php","2.x\/itop-problem-mgmt\/ja.dict.itop-problem-mgmt.php","2.x\/itop-problem-mgmt\/de.dict.itop-problem-mgmt.php","2.x\/itop-problem-mgmt\/zh_cn.dict.itop-problem-mgmt.php","2.x\/itop-problem-mgmt\/it.dict.itop-problem-mgmt.php"],"installed_version":"","available_version":"2.7.10","install":{"flag":1,"message":""}},"itop-request-mgmt-itil":{"label":"User request Management ITIL","category":"business","dependencies":["itop-config-mgmt\/2.4.0","itop-tickets\/2.4.0"],"mandatory":false,"visible":true,"datamodel":["model.itop-request-mgmt-itil.php","main.itop-request-mgmt-itil.php"],"data.struct":[],"data.sample":[],"doc.manual_setup":"","doc.more_information":"","settings":[],"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-request-mgmt-itil","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-request-mgmt-itil\/module.itop-request-mgmt-itil.php","dictionary":["2.x\/itop-request-mgmt-itil\/ja.dict.itop-request-mgmt-itil.php","2.x\/itop-request-mgmt-itil\/hu.dict.itop-request-mgmt-itil.php","2.x\/itop-request-mgmt-itil\/fr.dict.itop-request-mgmt-itil.php","2.x\/itop-request-mgmt-itil\/nl.dict.itop-request-mgmt-itil.php","2.x\/itop-request-mgmt-itil\/ru.dict.itop-request-mgmt-itil.php","2.x\/itop-request-mgmt-itil\/zh_cn.dict.itop-request-mgmt-itil.php","2.x\/itop-request-mgmt-itil\/it.dict.itop-request-mgmt-itil.php","2.x\/itop-request-mgmt-itil\/pt_br.dict.itop-request-mgmt-itil.php","2.x\/itop-request-mgmt-itil\/sk.dict.itop-request-mgmt-itil.php","2.x\/itop-request-mgmt-itil\/tr.dict.itop-request-mgmt-itil.php","2.x\/itop-request-mgmt-itil\/es_cr.dict.itop-request-mgmt-itil.php","2.x\/itop-request-mgmt-itil\/de.dict.itop-request-mgmt-itil.php","2.x\/itop-request-mgmt-itil\/en.dict.itop-request-mgmt-itil.php","2.x\/itop-request-mgmt-itil\/cs.dict.itop-request-mgmt-itil.php","2.x\/itop-request-mgmt-itil\/da.dict.itop-request-mgmt-itil.php"],"installed_version":"","available_version":"2.7.10","install":{"flag":1,"message":""}},"itop-request-mgmt":{"label":"Simple Ticket Management","category":"business","dependencies":["itop-config-mgmt\/2.4.0","itop-tickets\/2.4.0"],"mandatory":false,"visible":true,"datamodel":["model.itop-request-mgmt.php","main.itop-request-mgmt.php"],"data.struct":[],"data.sample":[],"doc.manual_setup":"","doc.more_information":"","settings":[],"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-request-mgmt","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-request-mgmt\/module.itop-request-mgmt.php","dictionary":["2.x\/itop-request-mgmt\/tr.dict.itop-request-mgmt.php","2.x\/itop-request-mgmt\/da.dict.itop-request-mgmt.php","2.x\/itop-request-mgmt\/it.dict.itop-request-mgmt.php","2.x\/itop-request-mgmt\/fr.dict.itop-request-mgmt.php","2.x\/itop-request-mgmt\/ru.dict.itop-request-mgmt.php","2.x\/itop-request-mgmt\/cs.dict.itop-request-mgmt.php","2.x\/itop-request-mgmt\/hu.dict.itop-request-mgmt.php","2.x\/itop-request-mgmt\/en.dict.itop-request-mgmt.php","2.x\/itop-request-mgmt\/sk.dict.itop-request-mgmt.php","2.x\/itop-request-mgmt\/pt_br.dict.itop-request-mgmt.php","2.x\/itop-request-mgmt\/zh_cn.dict.itop-request-mgmt.php","2.x\/itop-request-mgmt\/de.dict.itop-request-mgmt.php","2.x\/itop-request-mgmt\/es_cr.dict.itop-request-mgmt.php","2.x\/itop-request-mgmt\/nl.dict.itop-request-mgmt.php","2.x\/itop-request-mgmt\/ja.dict.itop-request-mgmt.php"],"installed_version":"","available_version":"2.7.10","install":{"flag":1,"message":""}},"itop-service-mgmt-provider":{"label":"Service Management for Service Providers","category":"business","dependencies":["itop-config-mgmt\/2.2.0","itop-tickets\/2.0.0"],"mandatory":false,"visible":true,"installer":"ServiceMgmtProviderInstaller","datamodel":["model.itop-service-mgmt-provider.php"],"data.struct":[],"data.sample":["data.sample.organizations.xml","data.sample.contracts.xml","data.sample.servicefamilies.xml","data.sample.services.xml","data.sample.serviceelements.xml","data.sample.sla.xml","data.sample.slt.xml","data.sample.sltsla.xml","data.sample.contractservice.xml","data.sample.deliverymodelcontact.xml"],"doc.manual_setup":"","doc.more_information":"","settings":[],"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-service-mgmt-provider","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-service-mgmt-provider\/module.itop-service-mgmt-provider.php","dictionary":["2.x\/itop-service-mgmt-provider\/zh_cn.dict.itop-service-mgmt-provider.php","2.x\/itop-service-mgmt-provider\/tr.dict.itop-service-mgmt-provider.php","2.x\/itop-service-mgmt-provider\/sk.dict.itop-service-mgmt-provider.php","2.x\/itop-service-mgmt-provider\/de.dict.itop-service-mgmt-provider.php","2.x\/itop-service-mgmt-provider\/ja.dict.itop-service-mgmt-provider.php","2.x\/itop-service-mgmt-provider\/ru.dict.itop-service-mgmt-provider.php","2.x\/itop-service-mgmt-provider\/fr.dict.itop-service-mgmt-provider.php","2.x\/itop-service-mgmt-provider\/hu.dict.itop-service-mgmt-provider.php","2.x\/itop-service-mgmt-provider\/en.dict.itop-service-mgmt-provider.php","2.x\/itop-service-mgmt-provider\/it.dict.itop-service-mgmt-provider.php","2.x\/itop-service-mgmt-provider\/cs.dict.itop-service-mgmt-provider.php","2.x\/itop-service-mgmt-provider\/es_cr.dict.itop-service-mgmt-provider.php","2.x\/itop-service-mgmt-provider\/pt_br.dict.itop-service-mgmt-provider.php","2.x\/itop-service-mgmt-provider\/da.dict.itop-service-mgmt-provider.php","2.x\/itop-service-mgmt-provider\/nl.dict.itop-service-mgmt-provider.php"],"installed_version":"","available_version":"2.7.10","install":{"flag":1,"message":""}},"itop-service-mgmt":{"label":"Service Management","category":"business","dependencies":["itop-config-mgmt\/2.2.0","itop-tickets\/2.0.0"],"mandatory":false,"visible":true,"installer":"ServiceMgmtInstaller","datamodel":["model.itop-service-mgmt.php"],"data.struct":[],"data.sample":["data.sample.organizations.xml","data.sample.contracts.xml","data.sample.servicefamilies.xml","data.sample.services.xml","data.sample.serviceelements.xml","data.sample.sla.xml","data.sample.slt.xml","data.sample.sltsla.xml","data.sample.contractservice.xml","data.sample.deliverymodelcontact.xml"],"doc.manual_setup":"","doc.more_information":"","settings":[],"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-service-mgmt","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-service-mgmt\/module.itop-service-mgmt.php","dictionary":["2.x\/itop-service-mgmt\/hu.dict.itop-service-mgmt.php","2.x\/itop-service-mgmt\/es_cr.dict.itop-service-mgmt.php","2.x\/itop-service-mgmt\/nl.dict.itop-service-mgmt.php","2.x\/itop-service-mgmt\/sk.dict.itop-service-mgmt.php","2.x\/itop-service-mgmt\/it.dict.itop-service-mgmt.php","2.x\/itop-service-mgmt\/da.dict.itop-service-mgmt.php","2.x\/itop-service-mgmt\/zh_cn.dict.itop-service-mgmt.php","2.x\/itop-service-mgmt\/tr.dict.itop-service-mgmt.php","2.x\/itop-service-mgmt\/en.dict.itop-service-mgmt.php","2.x\/itop-service-mgmt\/cs.dict.itop-service-mgmt.php","2.x\/itop-service-mgmt\/de.dict.itop-service-mgmt.php","2.x\/itop-service-mgmt\/ja.dict.itop-service-mgmt.php","2.x\/itop-service-mgmt\/ru.dict.itop-service-mgmt.php","2.x\/itop-service-mgmt\/pt_br.dict.itop-service-mgmt.php","2.x\/itop-service-mgmt\/fr.dict.itop-service-mgmt.php"],"installed_version":"","available_version":"2.7.10","install":{"flag":1,"message":""}},"itop-full-itil":{"label":"Bridge - Request management ITIL + Incident management ITIL","category":"business","dependencies":["itop-request-mgmt-itil\/2.3.0","itop-incident-mgmt-itil\/2.3.0"],"mandatory":false,"visible":false,"auto_select":"SetupInfo::ModuleIsSelected(\"itop-request-mgmt-itil\") && SetupInfo::ModuleIsSelected(\"itop-incident-mgmt-itil\")","datamodel":[],"webservice":[],"data.struct":[],"data.sample":[],"doc.manual_setup":"","doc.more_information":"","settings":[],"itop_version":"1.0.2","root_dir":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-full-itil","module_file":"ROOTDIR_TOREPLACEdatamodels\/2.x\/itop-full-itil\/module.itop-full-itil.php","installed_version":"","available_version":"2.7.10","install":{"flag":1,"message":""}}}