edlp_agenda.module 488 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * Implements hook_theme().
  4. */
  5. function edlp_agenda_theme($existing, $type, $theme, $path) {
  6. // @see https://www.drupal.org/docs/8/theming/twig/create-custom-twig-templates-from-custom-module
  7. return array(
  8. 'edlp_agenda' => array(
  9. // 'render element' => '',
  10. 'file' => 'includes/edlp_agenda.inc',
  11. 'variables' => array(
  12. 'next_event_node' => NULL,
  13. 'coming_events_nodes' => NULL,
  14. 'past_events_nodes' => NULL
  15. ),
  16. ),
  17. );
  18. }