module.itop-problem-mgmt.php 718 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. ),
  13. 'mandatory' => false,
  14. 'visible' => true,
  15. // Components
  16. //
  17. 'datamodel' => array(
  18. 'model.itop-problem-mgmt.php',
  19. ),
  20. 'dictionary' => array(
  21. 'en.dict.itop-problem-mgmt.php',
  22. ),
  23. 'data.struct' => array(
  24. //'data.struct.itop-problem-mgmt.xml',
  25. ),
  26. 'data.sample' => array(
  27. //'data.sample.itop-problem-mgmt.xml',
  28. ),
  29. // Documentation
  30. //
  31. 'doc.manual_setup' => '/doc/xxx/yyy.htm',
  32. 'doc.more_information' => '/doc/xxx/yyy.htm',
  33. )
  34. );
  35. ?>