module.itop-change-mgmt.php 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. ),
  30. 'data.struct' => array(
  31. //'data.struct.itop-change-mgmt.xml',
  32. ),
  33. 'data.sample' => array(
  34. //'data.sample.itop-change-mgmt.xml',
  35. ),
  36. // Documentation
  37. //
  38. 'doc.manual_setup' => '',
  39. 'doc.more_information' => '/doc/itop-documentation.htm#ChangeMgmt',
  40. // Default settings
  41. //
  42. 'settings' => array(
  43. ),
  44. )
  45. );
  46. ?>