module.itop-change-mgmt.php 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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-change-mgmt/1.0.0',
  5. array(
  6. // Identification
  7. //
  8. 'label' => 'Change Management',
  9. 'category' => 'business',
  10. // Setup
  11. //
  12. 'dependencies' => array(
  13. 'itop-config-mgmt/1.0.0',
  14. 'itop-tickets/1.0.0',
  15. ),
  16. 'mandatory' => false,
  17. 'visible' => true,
  18. // Components
  19. //
  20. 'datamodel' => array(
  21. 'model.itop-change-mgmt.php',
  22. ),
  23. 'dictionary' => array(
  24. 'en.dict.itop-change-mgmt.php',
  25. 'fr.dict.itop-change-mgmt.php',
  26. 'es_cr.dict.itop-change-mgmt.php',
  27. 'de.dict.itop-change-mgmt.php',
  28. 'pt_br.dict.itop-change-mgmt.php',
  29. 'ru.dict.itop-change-mgmt.php',
  30. 'tr.dict.itop-change-mgmt.php',
  31. 'zh.dict.itop-change-mgmt.php',
  32. ),
  33. 'data.struct' => array(
  34. //'data.struct.itop-change-mgmt.xml',
  35. ),
  36. 'data.sample' => array(
  37. //'data.sample.itop-change-mgmt.xml',
  38. ),
  39. // Documentation
  40. //
  41. 'doc.manual_setup' => '',
  42. 'doc.more_information' => '/doc/itop-documentation.htm#ChangeMgmt',
  43. // Default settings
  44. //
  45. 'settings' => array(
  46. ),
  47. )
  48. );
  49. ?>