mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-19 00:28:47 +02:00
58 lines
1.4 KiB
PHP
58 lines
1.4 KiB
PHP
<?php
|
|
|
|
|
|
SetupWebPage::AddModule(
|
|
__FILE__, // Path to the current file, all other file names are relative to the directory containing this file
|
|
'itop-config-mgmt/1.0.0',
|
|
array(
|
|
// Identification
|
|
//
|
|
'label' => 'Configuration Management (CMDB)',
|
|
'category' => 'business',
|
|
|
|
// Setup
|
|
//
|
|
'dependencies' => array(
|
|
//'itop-config-mgmt/1.0.0',
|
|
),
|
|
'mandatory' => true,
|
|
'visible' => true,
|
|
|
|
// Components
|
|
//
|
|
'datamodel' => array(
|
|
'model.itop-config-mgmt.php',
|
|
),
|
|
'data.struct' => array(
|
|
'data.struct.Audit.xml',
|
|
),
|
|
'data.sample' => array(
|
|
'data.sample.Organization.xml',
|
|
'data.sample.Location.xml',
|
|
'data.sample.Software.xml',
|
|
'data.sample.Contact.xml',
|
|
'data.sample.lnkTeamToContact.xml',
|
|
'data.sample.FunctionalCI.xml',
|
|
'data.sample.DBServerInstance.xml',
|
|
'data.sample.ApplicationInstance.xml',
|
|
'data.sample.DatabaseInstance.xml',
|
|
'data.sample.NetworkInterface.xml',
|
|
'data.sample.lnkCIToContact.xml',
|
|
'data.sample.lnkProcessToSolution.xml',
|
|
'data.sample.lnkSolutionToCI.xml',
|
|
),
|
|
|
|
// Documentation
|
|
//
|
|
'doc.manual_setup' => '../doc/itop-documentation.htm#Installation', // Some manual installation required
|
|
'doc.more_information' => '../doc/itop-documentation.htm#ConfigMgmt',
|
|
|
|
// Default settings
|
|
//
|
|
'settings' => array(
|
|
),
|
|
)
|
|
);
|
|
|
|
?>
|