module.itop-config-mgmt.php 841 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. ),
  24. 'data.struct' => array(
  25. //'data.struct.itop-config-mgmt.xml',
  26. ),
  27. 'data.sample' => array(
  28. //'data.sample.itop-config-mgmt.xml',
  29. ),
  30. // Documentation
  31. //
  32. 'doc.manual_setup' => '/doc/xxx/yyy.htm',
  33. 'doc.more_information' => '/doc/xxx/yyy.htm',
  34. )
  35. );
  36. ?>