1234567891011121314151617181920212223242526272829303132 |
- <?php
- use Drupal\Core\Render\Element;
- use Drupal\Core\Link;
- use Drupal\Core\Url;
- function template_preprocess_heartbeat(array &$variables) {
-
- $heartbeat = $variables['elements']['#heartbeat'];
-
- foreach (Element::children($variables['elements']) as $key) {
- $variables['content'][$key] = $variables['elements'][$key];
- }
- }
|