Files
iTop/modules/itop-tickets-1.0.0/module.itop-tickets.php
2010-09-13 10:16:09 +00:00

50 lines
811 B
PHP

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