module.itop-full-itil.php 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <?php
  2. //
  3. // iTop module definition file
  4. //
  5. SetupWebPage::AddModule(
  6. __FILE__, // Path to the current file, all other file names are relative to the directory containing this file
  7. 'itop-full-itil/1.0.0', array(
  8. // Identification
  9. //
  10. 'label' => 'Bridge - Request management ITIL + Incident management ITIL',
  11. 'category' => 'business',
  12. // Setup
  13. //
  14. 'dependencies' => array(
  15. 'itop-request-mgmt-itil/2.3.0',
  16. 'itop-incident-mgmt-itil/2.3.0',
  17. ),
  18. 'mandatory' => false,
  19. 'visible' => false,
  20. 'auto_select' => 'SetupInfo::ModuleIsSelected("itop-request-mgmt-itil") && SetupInfo::ModuleIsSelected("itop-incident-mgmt-itil")',
  21. // Components
  22. //
  23. 'datamodel' => array(
  24. //'model.itop-portal-full-itil.php'
  25. ),
  26. 'webservice' => array(
  27. ),
  28. 'data.struct' => array(
  29. // add your 'structure' definition XML files here,
  30. ),
  31. 'data.sample' => array(
  32. // add your sample data XML files here,
  33. ),
  34. // Documentation
  35. //
  36. 'doc.manual_setup' => '', // hyperlink to manual setup documentation, if any
  37. 'doc.more_information' => '', // hyperlink to more information, if any
  38. // Default settings
  39. //
  40. 'settings' => array(
  41. // Module specific settings go here, if any
  42. ),
  43. )
  44. );
  45. ?>