N°3117: fix refactor regarding itop-structure setup

This commit is contained in:
odain
2020-09-30 16:00:36 +02:00
parent 1b2dd04409
commit ee9343cf40

View File

@@ -7,8 +7,8 @@ SetupWebPage::AddModule(
array(
// Identification
//
'label' => 'Structure de base iTop',
'category' => 'core',
'label' => 'Core iTop Structure',
'category' => 'business',
// Setup
//
@@ -16,7 +16,7 @@ SetupWebPage::AddModule(
),
'mandatory' => true,
'visible' => true,
'installer' => 'ConfigMgmtInstaller',
'installer' => 'StructureInstaller',
// Components
//
@@ -47,11 +47,11 @@ SetupWebPage::AddModule(
)
);
if (!class_exists('ConfigMgmtInstaller'))
if (!class_exists('StructureInstaller'))
{
// Module installation handler
//
class ConfigMgmtInstaller extends ModuleInstallerAPI
class StructureInstaller extends ModuleInstallerAPI
{
public static function BeforeWritingConfig(Config $oConfiguration)
{