Вот модификация https://drupal.stackexchange.com/a/236408/67965, которая перебирает дочерние элементы рендера вместо поля #items
.
Удлинитель веточки:
/**
* Generates a list of all Twig filters that this extension defines.
*/
public function getFilters() {
return [
new \Twig_SimpleFilter('children', array($this, 'children')),
];
}
/**
* Get the render children of a field
*/
public static function children($variable) {
return array_filter(
$variable,
function($k) { return (is_numeric($k) || (strpos($k, '#') !== 0)); },
ARRAY_FILTER_USE_KEY
);
}
В ветке вы можете напрямую проходить через отрисованных потомков, что помогает в атомарных шаблонах проектирования. Определите шаблон сущности, например:
{% include '@molecules/grid.html.twig' with {
head : content.field_title,
grid_columns: content.field_collection_items|children
} %}
где grid.html.twig это что-то вроде:
{% if head %}
<div class="slab__wrapper">
{{ head }}
</div>
{% endif %}
<div class="grid">
{% for col in grid_columns %}
<div class="grid__column">
{{ col }}
</div>
{% endfor %}
</div>
Это обычно более полезно, чем необходимость отображать шаблон поля, {{ content.field_collection_items }}
поскольку макет дочерних элементов может управляться в контексте родительского элемента дизайна.