module.itop-welcome-itil.php 960 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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-welcome-itil/2.0.0',
  5. array(
  6. // Identification
  7. //
  8. 'label' => 'ITIL skin',
  9. 'category' => 'skin',
  10. // Setup
  11. //
  12. 'dependencies' => array(
  13. ),
  14. 'mandatory' => true,
  15. 'visible' => false,
  16. //'installer' => 'MyInstaller',
  17. // Components
  18. //
  19. 'datamodel' => array(
  20. 'main.itop-welcome-itil.php',
  21. 'model.itop-welcome-itil.php',
  22. ),
  23. 'webservice' => array(
  24. //'webservices.itop-welcome-itil.php',
  25. ),
  26. 'data.struct' => array(
  27. //'data.struct.itop-welcome-itil.xml',
  28. ),
  29. 'data.sample' => array(
  30. //'data.sample.itop-welcome-itil.xml',
  31. ),
  32. // Documentation
  33. //
  34. 'doc.manual_setup' => '',
  35. 'doc.more_information' => '',
  36. // Default settings
  37. //
  38. 'settings' => array(
  39. //'some_setting' => 'some value',
  40. ),
  41. )
  42. );
  43. ?>