Files
iTop/datamodels/2.x/itop-request-mgmt-itil/module.itop-request-mgmt-itil.php
Romain Quetiez 0773455ebc Cosmetics on the module names (consistency)
SVN:trunk[3459]
2014-12-10 10:48:47 +00:00

48 lines
865 B
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-request-mgmt-itil/2.1.0',
array(
// Identification
//
'label' => 'User request Management ITIL',
'category' => 'business',
// Setup
//
'dependencies' => array(
'itop-config-mgmt/2.0.0',
'itop-tickets/2.0.0',
),
'mandatory' => false,
'visible' => true,
// Components
//
'datamodel' => array(
'model.itop-request-mgmt-itil.php',
'main.itop-request-mgmt-itil.php',
),
'data.struct' => array(
),
'data.sample' => array(
//'data.sample.itop-request-mgmt.xml',
),
// Documentation
//
'doc.manual_setup' => '',
'doc.more_information' => '',
// Default settings
//
'settings' => array(
),
)
);
?>