Files
iTop/modules/itop-tickets-1.0.0/module.itop-tickets.php
Romain Quetiez 218ed7036b Implemented the three types of changes and factorized their lifecycle
Created incident/request/change dictionnaries

SVN:trunk[549]
2010-07-04 16:58:00 +00:00

40 lines
590 B
PHP

<?php
SetupWebPage::AddModule(
__FILE__,
'itop-tickets/1.0.0',
array(
// Identification
//
'label' => 'Tickets - prerequisite for ticket modules',
// Setup
//
'dependencies' => array(
),
'mandatory' => true,
'visible' => true,
// Components
//
'datamodel' => array(
'model.itop-tickets.php',
),
'dictionary' => array(
'en.dict.itop-tickets.php',
),
'data.struct' => array(
),
'data.sample' => array(
),
// Documentation
//
'doc.manual_setup' => '',
'doc.more_information' => '',
)
);
?>