1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <?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',
- ),
- 'data.struct' => array(
- 'data.struct.ta-triggers.xml',
- 'data.struct.ta-actions.xml',
- 'data.struct.ta-links.xml',
- ),
- 'data.sample' => array(
- ),
-
- // Documentation
- //
- 'doc.manual_setup' => '',
- 'doc.more_information' => '',
- // Default settings
- //
- 'settings' => array(
- ),
- )
- );
- ?>
|