module.itop-request-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-request-mgmt/1.0.0',
  5. array(
  6. // Identification
  7. //
  8. 'label' => 'User request management (Service Desk)',
  9. 'category' => 'business',
  10. // Setup
  11. //
  12. 'dependencies' => array(
  13. 'itop-config-mgmt/1.0.0',
  14. 'itop-tickets/1.0.0',
  15. ),
  16. 'mandatory' => false,
  17. 'visible' => true,
  18. // Components
  19. //
  20. 'datamodel' => array(
  21. 'model.itop-request-mgmt.php',
  22. ),
  23. 'dictionary' => array(
  24. 'en.dict.itop-request-mgmt.php',
  25. 'fr.dict.itop-request-mgmt.php',
  26. 'es_cr.dict.itop-request-mgmt.php',
  27. 'de.dict.itop-request-mgmt.php',
  28. 'pt_br.dict.itop-request-mgmt.php',
  29. ),
  30. 'data.struct' => array(
  31. 'data.struct.ta-triggers.xml',
  32. 'data.struct.ta-links.xml',
  33. ),
  34. 'data.sample' => array(
  35. //'data.sample.itop-request-mgmt.xml',
  36. ),
  37. // Documentation
  38. //
  39. 'doc.manual_setup' => '',
  40. 'doc.more_information' => '/doc/itop-documentation.htm#RequestMgmt',
  41. // Default settings
  42. //
  43. 'settings' => array(
  44. ),
  45. )
  46. );
  47. ?>