module.itop-portal.php 820 B

1234567891011121314151617181920212223242526272829303132333435363738
  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/1.0.0', array(
  5. // Identification
  6. 'label' => 'Enhanced Customer Portal',
  7. 'category' => 'Portal',
  8. // Setup
  9. 'dependencies' => array(
  10. 'itop-portal-base/1.0.0'
  11. ),
  12. 'mandatory' => false,
  13. 'visible' => true,
  14. // Components
  15. 'datamodel' => array(
  16. 'main.itop-portal.php'
  17. ),
  18. 'webservice' => array(
  19. //'webservices.itop-portal.php',
  20. ),
  21. 'dictionary' => array(
  22. ),
  23. 'data.struct' => array(
  24. //'data.struct.itop-portal.xml',
  25. ),
  26. 'data.sample' => array(
  27. //'data.sample.itop-portal.xml',
  28. ),
  29. // Documentation
  30. 'doc.manual_setup' => '',
  31. 'doc.more_information' => '',
  32. // Default settings
  33. 'settings' => array(
  34. ),
  35. )
  36. );
  37. ?>