module.itop-incident-mgmt.php 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. ),
  24. 'dictionary' => array(
  25. 'en.dict.itop-incident-mgmt.php',
  26. 'fr.dict.itop-incident-mgmt.php',
  27. 'es_cr.dict.itop-incident-mgmt.php',
  28. 'de.dict.itop-incident-mgmt.php',
  29. 'pt_br.dict.itop-incident-mgmt.php',
  30. 'ru.dict.itop-incident-mgmt.php',
  31. 'tr.dict.itop-incident-mgmt.php',
  32. 'zh.dict.itop-incident-mgmt.php',
  33. ),
  34. 'data.struct' => array(
  35. 'data.struct.ta-triggers.xml',
  36. 'data.struct.ta-links.xml',
  37. ),
  38. 'data.sample' => array(
  39. //'data.sample.itop-incident-mgmt.xml',
  40. ),
  41. // Documentation
  42. //
  43. 'doc.manual_setup' => '',
  44. 'doc.more_information' => '/doc/itop-documentation.htm#IncidentMgmt',
  45. // Default settings
  46. //
  47. 'settings' => array(
  48. ),
  49. )
  50. );
  51. ?>