module.itop-config-mgmt.php 1.5 KB

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