module.itop-problem-mgmt.php 957 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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-problem-mgmt/1.0.0',
  5. array(
  6. // Identification
  7. //
  8. 'label' => 'Problem Management',
  9. 'category' => 'business',
  10. // Setup
  11. //
  12. 'dependencies' => array(
  13. 'itop-config-mgmt/1.0.0',
  14. 'itop-tickets/1.0.0',
  15. 'itop-incident-mgmt/1.0.0',
  16. ),
  17. 'mandatory' => false,
  18. 'visible' => true,
  19. // Components
  20. //
  21. 'datamodel' => array(
  22. 'model.itop-problem-mgmt.php',
  23. ),
  24. 'data.struct' => array(
  25. //'data.struct.itop-problem-mgmt.xml',
  26. ),
  27. 'data.sample' => array(
  28. //'data.sample.itop-problem-mgmt.xml',
  29. ),
  30. // Documentation
  31. //
  32. 'doc.manual_setup' => '', // No manual installation instructions
  33. 'doc.more_information' => '/doc/itop-documentation.htm#ProblemMgmt',
  34. // Default settings
  35. //
  36. 'settings' => array(
  37. ),
  38. )
  39. );
  40. ?>