module.itop-tickets.php 620 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. ),
  24. 'data.struct' => array(
  25. ),
  26. 'data.sample' => array(
  27. ),
  28. // Documentation
  29. //
  30. 'doc.manual_setup' => '',
  31. 'doc.more_information' => '',
  32. )
  33. );
  34. ?>