module.itop-tickets.php 681 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. 'data.struct' => array(
  23. 'data.struct.ta-actions.xml',
  24. ),
  25. 'data.sample' => array(
  26. ),
  27. // Documentation
  28. //
  29. 'doc.manual_setup' => '',
  30. 'doc.more_information' => '',
  31. // Default settings
  32. //
  33. 'settings' => array(
  34. ),
  35. )
  36. );
  37. ?>