module.itop-config-mgmt.php 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. 'category' => 'business',
  10. // Setup
  11. //
  12. 'dependencies' => array(
  13. //'itop-config-mgmt/1.0.0',
  14. ),
  15. 'mandatory' => true,
  16. 'visible' => true,
  17. // Components
  18. //
  19. 'datamodel' => array(
  20. 'model.itop-config-mgmt.php',
  21. ),
  22. 'dictionary' => array(
  23. 'en.dict.itop-config-mgmt.php',
  24. 'fr.dict.itop-config-mgmt.php',
  25. 'es_cr.dict.itop-config-mgmt.php',
  26. ),
  27. 'data.struct' => array(
  28. 'data.struct.Audit.xml',
  29. ),
  30. 'data.sample' => array(
  31. 'data.sample.Organization.xml',
  32. 'data.sample.Location.xml',
  33. 'data.sample.Software.xml',
  34. 'data.sample.Contact.xml',
  35. 'data.sample.lnkTeamToContact.xml',
  36. 'data.sample.FunctionalCI.xml',
  37. 'data.sample.DBServerInstance.xml',
  38. 'data.sample.ApplicationInstance.xml',
  39. 'data.sample.DatabaseInstance.xml',
  40. 'data.sample.NetworkInterface.xml',
  41. 'data.sample.lnkCIToContact.xml',
  42. 'data.sample.lnkProcessToSolution.xml',
  43. 'data.sample.lnkSolutionToCI.xml',
  44. ),
  45. // Documentation
  46. //
  47. 'doc.manual_setup' => '', // No manual installation required
  48. 'doc.more_information' => '/doc/itop-documentation.htm#ConfigMgmt',
  49. // Default settings
  50. //
  51. 'settings' => array(
  52. ),
  53. )
  54. );
  55. ?>