Dal gibi alt öğelerden Element :: children ()


9

PHP'de okunabilir bir dizi ile uğraşırken, #özellik olmayan ancak bağımlı yenilenebilir öğeler (alan kümesi içindeki form öğeleri, alan widget'ındaki öğeler, vb.) Olmayan öğelere erişmek için Element :: children () kullanabilirsiniz . Örneğin, bu snippet, file.module dosyasından:

<?php
if ($element['#multiple']) {
  foreach (Element::children($element) as $name) {
    // ...
  }
}
?>

Aynı şeyi bir Twig şablonunda nasıl yapabilirim? Eğer yaparsam , vb. De {% for child in element %}içerecektir .#type#cache


Yanıtlar:


21
{% for key, child in element if key|first != '#' %}
  <div>{{ child }}</div>
{% endfor %}

2
Lütfen yalnızca kod yanıtlarından kaçının.
Mołot

2

Çocuklarla geri dönen bir Twig filtresi oluşturdum ArrayIterator.

mymodule/mymodule.services.yml

services:
  mymodule.twig_extension:
    arguments: ['@renderer']
    class: Drupal\mymodule\TwigExtension\Children
    tags:
      - { name: twig.extension }


mymodule/src/TwigExtension/Children.php

<?php

namespace Drupal\mymodule\TwigExtension;


class Children extends \Twig_Extension
{

  /**
   * Generates a list of all Twig filters that this extension defines.
   */
  public function getFilters()
  {
    return [
      new \Twig_SimpleFilter('children', array($this, 'children')),
    ];
  }


  /**
   * Gets a unique identifier for this Twig extension.
   */
  public function getName()
  {
    return 'mymodule.twig_extension';
  }


  /**
   * Get the children of a field (FieldItemList)
   */
  public static function Children($variable)
  {
    if (!empty($variable['#items'])
      && $variable['#items']->count() > 0
    ) {
      return $variable['#items']->getIterator();
    }

    return null;
  }

}


Dal şablonunda:

{% for headline in entity.field_headline|children %}
  {{ headline.get('value').getValue() }}
{% endfor %}

2

Diğer harika özelliklerin yanı sıra "çocuk" filtresine sahip Twig Tweak modülünü kullanın :

{% for item in content.field_name | children(true) %}
  {# loop.length, loop.revindex, loop.revindex0, and loop.last are now available #}
{% endfor %}

1

İşte https://drupal.stackexchange.com/a/236408/67965 alan yerine görüntü oluşturma işlemlerini gerçekleştiren bir değişiklik #items.

Dal uzantısı:

/**
 * 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
  );
}

Dalda, daha sonra işlenmiş çocuklardan doğrudan geçebilir, bu da atomik tasarım desenlerine yardımcı olur. Bir varlık şablonu tanımlayın, örneğin:

{% include '@molecules/grid.html.twig' with { 
   head : content.field_title,
   grid_columns: content.field_collection_items|children
} %}

Burada grid.html.twig şöyle bir şeydir:

{% 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>

Bu genellikle bir alan şablonu oluşturmak zorunda kalmaktan daha kullanışlıdır, {{ content.field_collection_items }}çünkü çocukların düzeni üst tasarım öğesi bağlamında kontrol edilebilir.

Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.