heartbeat.page.inc 816 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. /**
  3. * @file
  4. * Contains heartbeat.page.inc.
  5. *
  6. * Page callback for Heartbeat entities.
  7. */
  8. use Drupal\Core\Render\Element;
  9. use Drupal\Core\Link;
  10. use Drupal\Core\Url;
  11. /**
  12. * Prepares variables for Heartbeat templates.
  13. *
  14. * Default template: heartbeat.html.twig.
  15. *
  16. * @param array $variables
  17. * An associative array containing:
  18. * - elements: An associative array containing the user information and any
  19. * - attributes: HTML attributes for the containing element.
  20. */
  21. function template_preprocess_heartbeat(array &$variables) {
  22. // Fetch Heartbeat Entity Object.
  23. $heartbeat = $variables['elements']['#heartbeat'];
  24. // Helpful $content variable for templates.
  25. foreach (Element::children($variables['elements']) as $key) {
  26. $variables['content'][$key] = $variables['elements'][$key];
  27. }
  28. }