12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?php
- SetupWebPage::AddModule(
- __FILE__, // Path to the current file, all other file names are relative to the directory containing this file
- 'itop-change-mgmt-itil/2.3.0',
- array(
- // Identification
- //
- 'label' => 'Change Management ITIL',
- 'category' => 'business',
- // Setup
- //
- 'dependencies' => array(
- 'itop-config-mgmt/2.2.0',
- 'itop-tickets/2.0.0',
- ),
- 'mandatory' => false,
- 'visible' => true,
- // Components
- //
- 'datamodel' => array(
- 'model.itop-change-mgmt-itil.php',
- ),
- 'data.struct' => array(
- //'data.struct.itop-change-mgmt.xml',
- ),
- 'data.sample' => array(
- //'data.sample.itop-change-mgmt.xml',
- ),
-
- // Documentation
- //
- 'doc.manual_setup' => '',
- 'doc.more_information' => '',
- // Default settings
- //
- 'settings' => array(
- ),
- )
- );
- ?>
|