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/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.servers.xml',
  37. 'data.sample.nw-devices.xml',
  38. 'data.sample.software.xml',
  39. 'data.sample.dbserver.xml',
  40. 'data.sample.dbschema.xml',
  41. 'data.sample.webserver.xml',
  42. 'data.sample.webapp.xml',
  43. 'data.sample.applications.xml',
  44. 'data.sample.applicationsolutionci.xml',
  45. ),
  46. // Documentation
  47. //
  48. 'doc.manual_setup' => '/doc/itop-documentation.htm#Installation', // Some manual installation required
  49. 'doc.more_information' => '/doc/itop-documentation.htm#ConfigMgmt',
  50. // Default settings
  51. //
  52. 'settings' => array(
  53. ),
  54. )
  55. );
  56. ?>