module.itop-tickets.php 652 B

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