module.itop-incident-mgmt.php 941 B

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