Files
iTop/datamodels/2.x/itop-service-mgmt/module.itop-service-mgmt.php
Romain Quetiez b038bc3905 Cleanup in the setup manual instructions
SVN:trunk[2557]
2012-12-11 10:19:28 +00:00

55 lines
1.1 KiB
PHP
Executable File

<?php
SetupWebPage::AddModule(
__FILE__, // Path to the current file, all other file names are relative to the directory containing this file
'itop-service-mgmt/2.0.0',
array(
// Identification
//
'label' => 'Service Management (services, SLAs, contracts)',
'category' => 'business',
// Setup
//
'dependencies' => array(
'itop-config-mgmt/2.0.0',
),
'mandatory' => false,
'visible' => true,
// Components
//
'datamodel' => array(
'model.itop-service-mgmt.php',
),
'data.struct' => array(
//'data.struct.itop-service-mgmt.xml',
),
'data.sample' => array(
'data.sample.contracts.xml',
'data.sample.services.xml',
'data.sample.serviceelements.xml',
'data.sample.sla.xml',
'data.sample.slt.xml',
'data.sample.sltsla.xml',
// 'data.sample.coveragewindows.xml',
'data.sample.contractservice.xml',
// 'data.sample.deliverymodel.xml',
'data.sample.deliverymodelcontact.xml',
),
// Documentation
//
'doc.manual_setup' => '',
'doc.more_information' => '',
// Default settings
//
'settings' => array(
),
)
);
?>