module.itop-config-mgmt.php 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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/2.0.0',
  5. array(
  6. // Identification
  7. //
  8. 'label' => 'Configuration Management (CMDB)',
  9. 'category' => 'business',
  10. // Setup
  11. //
  12. 'dependencies' => array(
  13. ),
  14. 'mandatory' => true,
  15. 'visible' => true,
  16. // Components
  17. //
  18. 'datamodel' => array(
  19. 'model.itop-config-mgmt.php',
  20. 'main.itop-config-mgmt.php',
  21. ),
  22. 'data.struct' => array(
  23. ),
  24. 'data.sample' => array(
  25. 'data.sample.organizations.xml',
  26. 'data.sample.brand.xml',
  27. 'data.sample.model.xml',
  28. 'data.sample.osfamily.xml',
  29. 'data.sample.osversion.xml',
  30. 'data.sample.networkdevicetype.xml',
  31. 'data.sample.contacttype.xml',
  32. 'data.sample.locations.xml',
  33. 'data.sample.persons.xml',
  34. 'data.sample.teams.xml',
  35. 'data.sample.contactteam.xml',
  36. 'data.sample.racks.xml',
  37. 'data.sample.servers.xml',
  38. 'data.sample.nw-devices.xml',
  39. 'data.sample.farm.xml',
  40. 'data.sample.hypervisor.xml',
  41. 'data.sample.vm.xml',
  42. 'data.sample.software.xml',
  43. 'data.sample.dbserver.xml',
  44. 'data.sample.dbschema.xml',
  45. 'data.sample.webserver.xml',
  46. 'data.sample.webapp.xml',
  47. 'data.sample.applications.xml',
  48. 'data.sample.applicationsolutionci.xml',
  49. ),
  50. // Documentation
  51. //
  52. 'doc.manual_setup' => '/doc/itop-documentation.htm#Installation', // Some manual installation required
  53. 'doc.more_information' => '/doc/itop-documentation.htm#ConfigMgmt',
  54. // Default settings
  55. //
  56. 'settings' => array(
  57. ),
  58. )
  59. );
  60. ?>