module.itop-problem-mgmt.php 936 B

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