module.itop-portal-base.php 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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-portal-base/1.1.0', array(
  5. // Identification
  6. 'label' => 'Portal Development Library',
  7. 'category' => 'Portal',
  8. // Setup
  9. 'dependencies' => array(
  10. ),
  11. 'mandatory' => false,
  12. 'visible' => true,
  13. // Components
  14. 'datamodel' => array(
  15. 'portal/src/entities/abstractbrick.class.inc.php',
  16. 'portal/src/entities/portalbrick.class.inc.php',
  17. 'portal/src/controllers/abstractcontroller.class.inc.php',
  18. 'portal/src/controllers/brickcontroller.class.inc.php',
  19. 'portal/src/routers/abstractrouter.class.inc.php',
  20. ),
  21. 'webservice' => array(
  22. //'webservices.itop-portal-base.php',
  23. ),
  24. 'dictionary' => array(
  25. 'fr.dict.itop-portal-base.php',
  26. //'de.dict.itop-portal-base.php',
  27. ),
  28. 'data.struct' => array(
  29. //'data.struct.itop-portal-base.xml',
  30. ),
  31. 'data.sample' => array(
  32. //'data.sample.itop-portal-base.xml',
  33. ),
  34. // Documentation
  35. 'doc.manual_setup' => '',
  36. 'doc.more_information' => '',
  37. // Default settings
  38. 'settings' => array(
  39. ),
  40. )
  41. );
  42. ?>