module.itop-incident-mgmt-itil.php 827 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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-itil/2.0.0',
  5. array(
  6. // Identification
  7. //
  8. 'label' => 'Incident Management ITIL V3',
  9. 'category' => 'business',
  10. // Setup
  11. //
  12. 'dependencies' => array(
  13. 'itop-config-mgmt/2.0.0',
  14. 'itop-tickets/2.0.0',
  15. ),
  16. 'mandatory' => false,
  17. 'visible' => true,
  18. // Components
  19. //
  20. 'datamodel' => array(
  21. 'model.itop-incident-mgmt-itil.php',
  22. ),
  23. 'data.struct' => array(
  24. ),
  25. 'data.sample' => array(
  26. //'data.sample.itop-request-mgmt.xml',
  27. ),
  28. // Documentation
  29. //
  30. 'doc.manual_setup' => '',
  31. 'doc.more_information' => '',
  32. // Default settings
  33. //
  34. 'settings' => array(
  35. ),
  36. )
  37. );
  38. ?>