module.itop-config.php 1006 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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-config/1.0.3',
  5. array(
  6. // Identification
  7. //
  8. 'label' => 'Configuration editor',
  9. 'category' => 'Application management',
  10. // Setup
  11. //
  12. 'dependencies' => array(
  13. ),
  14. 'mandatory' => true,
  15. 'visible' => false,
  16. // Components
  17. //
  18. 'datamodel' => array(
  19. 'main.itop-config.php',
  20. //'model.itop-config.php',
  21. ),
  22. 'webservice' => array(
  23. //'webservices.itop-config.php',
  24. ),
  25. 'dictionary' => array(
  26. 'en.dict.itop-config.php',
  27. 'fr.dict.itop-config.php',
  28. //'de.dict.itop-config.php',
  29. ),
  30. 'data.struct' => array(
  31. //'data.struct.itop-config.xml',
  32. ),
  33. 'data.sample' => array(
  34. //'data.sample.itop-config.xml',
  35. ),
  36. // Documentation
  37. //
  38. 'doc.manual_setup' => '',
  39. 'doc.more_information' => '',
  40. // Default settings
  41. //
  42. 'settings' => array(
  43. ),
  44. )
  45. );