module.sample-portal-alter-twig.php 1.1 KB

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