module.itop-tickets.php 843 B

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