mirror of
https://github.com/Combodo/iTop.git
synced 2026-03-02 23:54:12 +01:00
45 lines
681 B
PHP
45 lines
681 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' => false,
|
|
|
|
// Components
|
|
//
|
|
'datamodel' => array(
|
|
'model.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(
|
|
),
|
|
)
|
|
);
|
|
|
|
?>
|