12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- use Drupal\Core\Render\Element;
- function template_preprocess_composition(array &$vars) {
-
-
-
- $composition = $vars['elements']['#composition'];
- $vars['view_mode'] = $vars['elements']['#view_mode'];
-
-
-
- $vars['url'] = $composition->url();
- $vars['attributes']['cid'] = $composition->id();
- $vars['attributes']['class'] = array('composition');
-
- foreach (Element::children($vars['elements']) as $key) {
- $vars['content'][$key] = $vars['elements'][$key];
- }
-
- }
|