mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-23 10:38:45 +02:00
50 lines
811 B
PHP
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(
|
|
),
|
|
)
|
|
);
|
|
|
|
?>
|