Twig Field Value

Component ID

2763183

Component name

Twig Field Value

Component type

module

Maintenance status

Development status

Component security advisory coverage

covered

Downloads

36963

Component created

Component changed

Component body

Twig Field Value allows Drupal 8 themers to get partial data from 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 %}