module.itop-service-mgmt.php 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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-service-mgmt/2.0.0',
  5. array(
  6. // Identification
  7. //
  8. 'label' => 'Service Management (services, SLAs, contracts)',
  9. 'category' => 'business',
  10. // Setup
  11. //
  12. 'dependencies' => array(
  13. 'itop-config-mgmt/2.0.0',
  14. ),
  15. 'mandatory' => false,
  16. 'visible' => true,
  17. // Components
  18. //
  19. 'datamodel' => array(
  20. 'model.itop-service-mgmt.php',
  21. ),
  22. 'data.struct' => array(
  23. //'data.struct.itop-service-mgmt.xml',
  24. ),
  25. 'data.sample' => array(
  26. 'data.sample.contracts.xml',
  27. 'data.sample.services.xml',
  28. 'data.sample.serviceelements.xml',
  29. 'data.sample.sla.xml',
  30. 'data.sample.slt.xml',
  31. 'data.sample.sltsla.xml',
  32. // 'data.sample.coveragewindows.xml',
  33. 'data.sample.contractservice.xml',
  34. // 'data.sample.deliverymodel.xml',
  35. 'data.sample.deliverymodelcontact.xml',
  36. ),
  37. // Documentation
  38. //
  39. 'doc.manual_setup' => '',
  40. 'doc.more_information' => '',
  41. // Default settings
  42. //
  43. 'settings' => array(
  44. ),
  45. )
  46. );
  47. ?>