module.itop-change-mgmt-itil.php 857 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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-itil/2.3.0',
  5. array(
  6. // Identification
  7. //
  8. 'label' => 'Change Management ITIL',
  9. 'category' => 'business',
  10. // Setup
  11. //
  12. 'dependencies' => array(
  13. 'itop-config-mgmt/2.2.0',
  14. 'itop-tickets/2.0.0',
  15. ),
  16. 'mandatory' => false,
  17. 'visible' => true,
  18. // Components
  19. //
  20. 'datamodel' => array(
  21. 'model.itop-change-mgmt-itil.php',
  22. ),
  23. 'data.struct' => array(
  24. //'data.struct.itop-change-mgmt.xml',
  25. ),
  26. 'data.sample' => array(
  27. //'data.sample.itop-change-mgmt.xml',
  28. ),
  29. // Documentation
  30. //
  31. 'doc.manual_setup' => '',
  32. 'doc.more_information' => '',
  33. // Default settings
  34. //
  35. 'settings' => array(
  36. ),
  37. )
  38. );
  39. ?>