Files
iTop/datamodels/2.x/itop-request-mgmt/module.itop-request-mgmt.php
2012-10-19 13:07:35 +00:00

48 lines
899 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/2.0.0',
array(
// Identification
//
'label' => 'User request management (Service Desk)',
'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.php',
'main.itop-request-mgmt.php',
),
'data.struct' => array(
),
'data.sample' => array(
//'data.sample.itop-request-mgmt.xml',
),
// Documentation
//
'doc.manual_setup' => '',
'doc.more_information' => '/doc/itop-documentation.htm#RequestMgmt',
// Default settings
//
'settings' => array(
),
)
);
?>