Components
- Code
- Documentation
- Miscellaneous
- User interface
Licence
http://www.gnu.org/licenses/old-licenses/gpl-2.0.htmlpermet d'ajouter des fonctions twig pour manipuler les objets
Release
Covered by Drupal's security advisory policy
Covered by Drupal's security advisory policy
Release type : Bug fixes
Description
Twig Field Value helps frontenders to get partial data from Drupal field render arrays. It gives them more control over the output without drilling deep into the render array or using preprocess functions.
Single field value
<strong>{{ content.field_name|field_label }}</strong>: {{ content.field_name|field_value }}
Multiple field values
<strong>{{ content.field_name|field_label }}</strong>: {{ content.field_name|field_value|safe_join(', ') }}
Single field properties
<span>Text format: {{ content.field_body|field_raw('text_format') }}.</span>
Referenced entities
<img src={{ file_url(content.field_image|field_target_entity.uri.value) }} alt={{ content.field_image|field_raw('alt') }} />
Filters:
- field_label : Returns the field label value.
- field_value : Returns the render array of the field value(s) without the field wrappers.
- field_raw: Returns raw field properties value(s).
- field_target_entity: Returns the referenced entity object(s) of an entity reference field.
Cache warning
The field_raw and field_target_entity filters do not provide any cache information. Without additional measures content printed with these filters will not be update when changed in the backend. You can workaround this by rendering the field in your template but not display the result. For example: {% set catch_cache = content.field_image|render %}
Toutes les informations proviennent du site drupal.org