module.itop-tickets.php 811 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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' => true,
  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. ),
  27. 'data.struct' => array(
  28. 'data.struct.ta-actions.xml',
  29. ),
  30. 'data.sample' => array(
  31. ),
  32. // Documentation
  33. //
  34. 'doc.manual_setup' => '',
  35. 'doc.more_information' => '',
  36. // Default settings
  37. //
  38. 'settings' => array(
  39. ),
  40. )
  41. );
  42. ?>