123456789101112131415161718192021222324252627282930313233343536373839 |
- <?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',
- )
- );
- ?>
|