module.itop-basic.php 653 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. SetupWebPage::AddModule(
  3. 'itop-basic/1.0.0',
  4. array(
  5. // Identification
  6. //
  7. 'label' => 'Change Management',
  8. // Setup
  9. //
  10. 'dependencies' => array(
  11. ),
  12. 'mandatory' => false,
  13. 'visible' => true,
  14. // Components
  15. //
  16. 'datamodel' => array(
  17. 'model.itop-basic.php',
  18. ),
  19. 'dictionary' => array(
  20. 'en.dict.itop-basic.php',
  21. ),
  22. 'data.struct' => array(
  23. //'data.struct.itop-basic.xml',
  24. ),
  25. 'data.sample' => array(
  26. //'data.sample.itop-basic.xml',
  27. ),
  28. // Documentation
  29. //
  30. 'doc.manual_setup' => '/doc/xxx/yyy.htm',
  31. 'doc.more_information' => '/doc/xxx/yyy.htm',
  32. )
  33. );
  34. ?>