module.itop-service-mgmt.php 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. '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-service-mgmt.php',
  21. ),
  22. 'dictionary' => array(
  23. 'en.dict.itop-service-mgmt.php',
  24. 'fr.dict.itop-service-mgmt.php',
  25. 'es_cr.dict.itop-service-mgmt.php',
  26. 'de.dict.itop-service-mgmt.php',
  27. 'pt_br.dict.itop-service-mgmt.php',
  28. 'ru.dict.itop-service-mgmt.php',
  29. 'tr.dict.itop-service-mgmt.php',
  30. ),
  31. 'data.struct' => array(
  32. //'data.struct.itop-service-mgmt.xml',
  33. ),
  34. 'data.sample' => array(
  35. 'data.sample.Service.xml',
  36. 'data.sample.ServiceSubcategory.xml',
  37. 'data.sample.SLA.xml',
  38. 'data.sample.SLT.xml',
  39. 'data.sample.lnkSLTToSLA.xml',
  40. 'data.sample.Contract.xml',
  41. 'data.sample.lnkContractToSLA.xml',
  42. ),
  43. // Documentation
  44. //
  45. 'doc.manual_setup' => '', // No manual installation instructions
  46. 'doc.more_information' => '/doc/itop-documentation.htm#ServiceMgmt',
  47. // Default settings
  48. //
  49. 'settings' => array(
  50. ),
  51. )
  52. );
  53. ?>