module.itop-problem-mgmt.php 744 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?php
  2. SetupWebPage::AddModule(
  3. 'itop-problem-mgmt/1.0.0',
  4. array(
  5. // Identification
  6. //
  7. 'label' => 'Problem Managemen',
  8. // Setup
  9. //
  10. 'dependencies' => array(
  11. 'itop-config-mgmt/1.0.0',
  12. 'itop-tickets/1.0.0',
  13. ),
  14. 'mandatory' => false,
  15. 'visible' => true,
  16. // Components
  17. //
  18. 'datamodel' => array(
  19. 'model.itop-problem-mgmt.php',
  20. ),
  21. 'dictionary' => array(
  22. 'en.dict.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' => '/doc/xxx/yyy.htm',
  33. 'doc.more_information' => '/doc/xxx/yyy.htm',
  34. )
  35. );
  36. ?>