module.itop-tickets.php 975 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <?php
  2. SetupWebPage::AddModule(
  3. __FILE__,
  4. 'itop-tickets/1.0.0',
  5. array(
  6. // Identification
  7. //
  8. 'label' => 'Tickets - prerequisite for ticket modules',
  9. 'category' => 'business',
  10. // Setup
  11. //
  12. 'dependencies' => array(
  13. 'itop-config-mgmt/1.0.0',
  14. ),
  15. 'mandatory' => true,
  16. 'visible' => false,
  17. // Components
  18. //
  19. 'datamodel' => array(
  20. 'model.itop-tickets.php',
  21. ),
  22. 'dictionary' => array(
  23. 'en.dict.itop-tickets.php',
  24. 'fr.dict.itop-tickets.php',
  25. 'es_cr.dict.itop-tickets.php',
  26. 'de.dict.itop-tickets.php',
  27. 'pt_br.dict.itop-tickets.php',
  28. 'ru.dict.itop-tickets.php',
  29. 'tr.dict.itop-tickets.php',
  30. 'zh.dict.itop-tickets.php',
  31. ),
  32. 'data.struct' => array(
  33. 'data.struct.ta-actions.xml',
  34. ),
  35. 'data.sample' => array(
  36. ),
  37. // Documentation
  38. //
  39. 'doc.manual_setup' => '',
  40. 'doc.more_information' => '',
  41. // Default settings
  42. //
  43. 'settings' => array(
  44. ),
  45. )
  46. );
  47. ?>