Files
iTop/modules/itop-service-mgmt-1.0.0/module.itop-service-mgmt.php
2010-06-30 15:40:18 +00:00

43 lines
863 B
PHP

<?php
SetupWebPage::AddModule(
__FILE__, // Path to the current file, all other file names are relative to the directory containing this file
'itop-service-mgmt/1.0.0',
array(
// Identification
//
'label' => 'Service Management (services, SLAs, contracts)',
// Setup
//
'dependencies' => array(
//'itop-service-mgmt/1.0.0',
),
'mandatory' => false,
'visible' => true,
// Components
//
'datamodel' => array(
'model.itop-service-mgmt.php',
),
'dictionary' => array(
'en.dict.itop-service-mgmt.php',
),
'data.struct' => array(
//'data.struct.itop-service-mgmt.xml',
),
'data.sample' => array(
//'data.sample.itop-service-mgmt.xml',
),
// Documentation
//
'doc.manual_setup' => '/doc/xxx/yyy.htm',
'doc.more_information' => '/doc/xxx/yyy.htm',
)
);
?>