module.itop-service-mgmt.php 1.3 KB

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