module.itop-config-mgmt.php 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. ),
  26. 'data.struct' => array(
  27. 'data.struct.Audit.xml',
  28. ),
  29. 'data.sample' => array(
  30. 'data.sample.Organization.xml',
  31. 'data.sample.Location.xml',
  32. 'data.sample.Software.xml',
  33. 'data.sample.Contact.xml',
  34. 'data.sample.lnkTeamToContact.xml',
  35. 'data.sample.FunctionalCI.xml',
  36. 'data.sample.DBServerInstance.xml',
  37. 'data.sample.ApplicationInstance.xml',
  38. 'data.sample.DatabaseInstance.xml',
  39. //'data.sample.NetworkInterface.xml',
  40. 'data.sample.lnkCIToContact.xml',
  41. 'data.sample.lnkProcessToSolution.xml',
  42. 'data.sample.lnkSolutionToCI.xml',
  43. ),
  44. // Documentation
  45. //
  46. 'doc.manual_setup' => '', // No manual installation required
  47. 'doc.more_information' => '/doc/itop-documentation.htm#ConfigMgmt',
  48. // Default settings
  49. //
  50. 'settings' => array(
  51. ),
  52. )
  53. );
  54. ?>