module.itop-config-mgmt.php 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?php
  2. SetupWebPage::AddModule(
  3. __FILE__, // Path to the current file, all other file names are relative to the directory containing this file
  4. 'itop-config-mgmt/1.0.0',
  5. array(
  6. // Identification
  7. //
  8. 'label' => 'Configuration Management (CMDB)',
  9. // Setup
  10. //
  11. 'dependencies' => array(
  12. //'itop-config-mgmt/1.0.0',
  13. ),
  14. 'mandatory' => true,
  15. 'visible' => true,
  16. // Components
  17. //
  18. 'datamodel' => array(
  19. 'model.itop-config-mgmt.php',
  20. ),
  21. 'dictionary' => array(
  22. 'en.dict.itop-config-mgmt.php',
  23. 'fr.dict.itop-config-mgmt.php',
  24. ),
  25. 'data.struct' => array(
  26. //'data.struct.itop-config-mgmt.xml',
  27. ),
  28. 'data.sample' => array(
  29. 'data.sample.organization.xml',
  30. 'data.sample.location.xml',
  31. 'data.sample.team.xml',
  32. 'data.sample.contact.xml',
  33. 'data.sample.server.xml',
  34. 'data.sample.application.xml',
  35. 'data.sample.business.xml',
  36. ),
  37. // Documentation
  38. //
  39. 'doc.manual_setup' => '', // No manual installation required
  40. 'doc.more_information' => '/doc/xxx/yyy.htm',
  41. )
  42. );
  43. ?>