module.itop-problem-mgmt.php 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. 'dictionary' => array(
  25. 'en.dict.itop-problem-mgmt.php',
  26. 'es_cr.dict.itop-problem-mgmt.php',
  27. 'fr.dict.itop-problem-mgmt.php',
  28. 'de.dict.itop-problem-mgmt.php',
  29. 'pt_br.dict.itop-problem-mgmt.php',
  30. ),
  31. 'data.struct' => array(
  32. //'data.struct.itop-problem-mgmt.xml',
  33. ),
  34. 'data.sample' => array(
  35. //'data.sample.itop-problem-mgmt.xml',
  36. ),
  37. // Documentation
  38. //
  39. 'doc.manual_setup' => '', // No manual installation instructions
  40. 'doc.more_information' => '/doc/itop-documentation.htm#ProblemMgmt',
  41. // Default settings
  42. //
  43. 'settings' => array(
  44. ),
  45. )
  46. );
  47. ?>