module.itop-welcome-itil.php 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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/1.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. 'model.itop-welcome-itil.php',
  21. ),
  22. 'webservice' => array(
  23. //'webservices.itop-welcome-itil.php',
  24. ),
  25. 'dictionary' => array(
  26. //'en.dict.itop-welcome-itil.php',
  27. //'fr.dict.itop-welcome-itil.php',
  28. //'de.dict.itop-welcome-itil.php',
  29. ),
  30. 'data.struct' => array(
  31. //'data.struct.itop-welcome-itil.xml',
  32. ),
  33. 'data.sample' => array(
  34. //'data.sample.itop-welcome-itil.xml',
  35. ),
  36. // Documentation
  37. //
  38. 'doc.manual_setup' => '',
  39. 'doc.more_information' => '',
  40. // Default settings
  41. //
  42. 'settings' => array(
  43. //'some_setting' => 'some value',
  44. ),
  45. )
  46. );
  47. ?>