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

49 lines
925 B
PHP

<?php
SetupWebPage::AddModule(
__FILE__, // Path to the current file, all other file names are relative to the directory containing this file
'itop-request-mgmt/1.0.0',
array(
// Identification
//
'label' => 'User request management (Service Desk)',
'category' => 'business',
// Setup
//
'dependencies' => array(
'itop-config-mgmt/1.0.0',
'itop-tickets/1.0.0',
),
'mandatory' => false,
'visible' => true,
// Components
//
'datamodel' => array(
'model.itop-request-mgmt.php',
'main.itop-request-mgmt.php',
),
'data.struct' => array(
'data.struct.ta-triggers.xml',
'data.struct.ta-links.xml',
),
'data.sample' => array(
//'data.sample.itop-request-mgmt.xml',
),
// Documentation
//
'doc.manual_setup' => '',
'doc.more_information' => '',
// Default settings
//
'settings' => array(
),
)
);
?>