module.itop-config-mgmt.php 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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.Software.xml',
  32. 'data.sample.Contact.xml',
  33. 'data.sample.lnkTeamToContact.xml',
  34. 'data.sample.FunctionalCI.xml',
  35. 'data.sample.DBServerInstance.xml',
  36. 'data.sample.ApplicationInstance.xml',
  37. 'data.sample.DatabaseInstance.xml',
  38. //'data.sample.NetworkInterface.xml',
  39. 'data.sample.lnkCIToContact.xml',
  40. 'data.sample.lnkProcessToSolution.xml',
  41. 'data.sample.lnkSolutionToCI.xml',
  42. ),
  43. // Documentation
  44. //
  45. 'doc.manual_setup' => '', // No manual installation required
  46. 'doc.more_information' => '/doc/itop-documentation.htm#ConfigMgmt',
  47. )
  48. );
  49. ?>