module.itop-welcome-itil.php 926 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. 'data.struct' => array(
  26. //'data.struct.itop-welcome-itil.xml',
  27. ),
  28. 'data.sample' => array(
  29. //'data.sample.itop-welcome-itil.xml',
  30. ),
  31. // Documentation
  32. //
  33. 'doc.manual_setup' => '',
  34. 'doc.more_information' => '',
  35. // Default settings
  36. //
  37. 'settings' => array(
  38. //'some_setting' => 'some value',
  39. ),
  40. )
  41. );
  42. ?>