module.itop-service-mgmt.php 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. ),
  30. 'data.struct' => array(
  31. //'data.struct.itop-service-mgmt.xml',
  32. ),
  33. 'data.sample' => array(
  34. 'data.sample.Service.xml',
  35. 'data.sample.ServiceSubcategory.xml',
  36. 'data.sample.SLA.xml',
  37. 'data.sample.SLT.xml',
  38. 'data.sample.lnkSLTToSLA.xml',
  39. 'data.sample.Contract.xml',
  40. 'data.sample.lnkContractToSLA.xml',
  41. ),
  42. // Documentation
  43. //
  44. 'doc.manual_setup' => '', // No manual installation instructions
  45. 'doc.more_information' => '/doc/itop-documentation.htm#ServiceMgmt',
  46. // Default settings
  47. //
  48. 'settings' => array(
  49. ),
  50. )
  51. );
  52. ?>