module.itop-service-mgmt.php 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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/1.0.0',
  5. array(
  6. // Identification
  7. //
  8. 'label' => 'Service Management (services, SLAs, contracts)',
  9. // Setup
  10. //
  11. 'dependencies' => array(
  12. 'itop-config-mgmt/1.0.0',
  13. ),
  14. 'mandatory' => false,
  15. 'visible' => true,
  16. // Components
  17. //
  18. 'datamodel' => array(
  19. 'model.itop-service-mgmt.php',
  20. ),
  21. 'dictionary' => array(
  22. 'en.dict.itop-service-mgmt.php',
  23. ),
  24. 'data.struct' => array(
  25. //'data.struct.itop-service-mgmt.xml',
  26. ),
  27. 'data.sample' => array(
  28. 'data.sample.service.xml',
  29. 'data.sample.servicesubcategory.xml',
  30. 'data.sample.sla.xml',
  31. 'data.sample.slt.xml',
  32. 'data.sample.slttosla.xml',
  33. 'data.sample.customercontract.xml',
  34. 'data.sample.contracttosla.xml',
  35. ),
  36. // Documentation
  37. //
  38. 'doc.manual_setup' => '', // No manual installation instructions
  39. 'doc.more_information' => '/doc/xxx/yyy.htm',
  40. )
  41. );
  42. ?>