12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- SetupWebPage::AddModule(
- 'itop-basic/1.0.0',
- array(
- // Identification
- //
- 'label' => 'Change Management',
- // Setup
- //
- 'dependencies' => array(
- ),
- 'mandatory' => false,
- 'visible' => true,
- // Components
- //
- 'datamodel' => array(
- 'model.itop-basic.php',
- ),
- 'dictionary' => array(
- 'en.dict.itop-basic.php',
- ),
- 'data.struct' => array(
- //'data.struct.itop-basic.xml',
- ),
- 'data.sample' => array(
- //'data.sample.itop-basic.xml',
- ),
-
- // Documentation
- //
- 'doc.manual_setup' => '/doc/xxx/yyy.htm',
- 'doc.more_information' => '/doc/xxx/yyy.htm',
- )
- );
- ?>
|