Files
iTop/modules/itop-tickets-1.0.0/module.itop-tickets.php
2010-07-02 13:37:20 +00:00

40 lines
595 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' => false,
// Components
//
'datamodel' => array(
'model.itop-ticket.php',
),
'dictionary' => array(
'en.dict.itop-ticket.php',
),
'data.struct' => array(
),
'data.sample' => array(
),
// Documentation
//
'doc.manual_setup' => 'aaa',
'doc.more_information' => 'aaa',
)
);
?>