mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-30 22:18:46 +02:00
Moved modules to datamodel
SVN:trunk[1783]
This commit is contained in:
58
datamodel/itop-config-mgmt-1.0.0/module.itop-config-mgmt.php
Normal file
58
datamodel/itop-config-mgmt-1.0.0/module.itop-config-mgmt.php
Normal file
@@ -0,0 +1,58 @@
|
||||
<?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',
|
||||
'main.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(
|
||||
),
|
||||
)
|
||||
);
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user