module.itop-request-mgmt.php 878 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. // Setup
  10. //
  11. 'dependencies' => array(
  12. 'itop-config-mgmt/1.0.0',
  13. 'itop-tickets/1.0.0',
  14. ),
  15. 'mandatory' => false,
  16. 'visible' => true,
  17. // Components
  18. //
  19. 'datamodel' => array(
  20. 'model.itop-request-mgmt.php',
  21. ),
  22. 'dictionary' => array(
  23. 'en.dict.itop-request-mgmt.php',
  24. ),
  25. 'data.struct' => array(
  26. //'data.struct.itop-request-mgmt.xml',
  27. ),
  28. 'data.sample' => array(
  29. //'data.sample.itop-request-mgmt.xml',
  30. ),
  31. // Documentation
  32. //
  33. 'doc.manual_setup' => '/doc/xxx/yyy.htm',
  34. 'doc.more_information' => '/doc/xxx/yyy.htm',
  35. )
  36. );
  37. ?>