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