यहाँ 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 }}
क्योंकि बच्चों के लेआउट को मूल डिज़ाइन तत्व के संदर्भ में नियंत्रित किया जा सकता है।