module.itop-incident-mgmt.php 941 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?php
  2. SetupWebPage::AddModule(
  3. __FILE__, // Path to the current file, all other file names are relative to the directory containing this file
  4. 'itop-incident-mgmt/1.0.0',
  5. array(
  6. // Identification
  7. //
  8. 'label' => 'Incident Management',
  9. 'category' => 'business',
  10. // Setup
  11. //
  12. 'dependencies' => array(
  13. 'itop-config-mgmt/1.0.0',
  14. 'itop-service-mgmt/1.0.0',
  15. 'itop-tickets/1.0.0',
  16. ),
  17. 'mandatory' => false,
  18. 'visible' => true,
  19. // Components
  20. //
  21. 'datamodel' => array(
  22. 'model.itop-incident-mgmt.php',
  23. 'main.itop-incident-mgmt.php',
  24. ),
  25. 'data.struct' => array(
  26. 'data.struct.ta-triggers.xml',
  27. 'data.struct.ta-links.xml',
  28. ),
  29. 'data.sample' => array(
  30. //'data.sample.itop-incident-mgmt.xml',
  31. ),
  32. // Documentation
  33. //
  34. 'doc.manual_setup' => '',
  35. 'doc.more_information' => '',
  36. // Default settings
  37. //
  38. 'settings' => array(
  39. ),
  40. )
  41. );
  42. ?>