ez_render_field()
is a Twig helper allowing to display a Content item's Field value, taking advantage of the template block exposed by the FieldType used.
Template blocks for built-in FieldTypes reside in EzPublishCoreBundle. |
ez_render_field( eZ\Publish\Core\Repository\Values\Content\Content content, string fieldDefinitionIdentifier[, hash params] )
Argument name | Type | Description | |
---|---|---|---|
content | eZ\Publish\Core\Repository\Values\Content\Content | Content object the displayable field belongs to. | |
fieldDefinitionIdentifier | string | The identifier the Field is referenced by. | |
params | hash | Hash of parameters that will be passed to the template block. By default you can pass 2 entries:
|
In some cases, you may not want to use the built-in field template block as it might not fit your markup needs. In this case, you can choose to override the template block to use by specifying your own template. You can do this inline when calling ez_render_field()
, or globally by prepending a field template to use by the helper.
Your template block must comply to a regular FieldType template block, as explained in the FieldType documentation. |
You can easily use the template you need by filling the template
entry in the params
argument.
{{ ez_render_field( content, 'my_field_identifier', { 'template': 'AcmeTestBundle:fields:my_field_template.html.twig' } ) }} |
The code above will load my_field_template.html.twig
located in AcmeTestBundle/Resources/views/fields/
.
{# AcmeTestBundle/Resources/views/fields/my_field_template.html.twig #} {# Assuming "my_field_identifier" from above template example is an ezkeyword field. #} {% block ezkeyword_field %} {% spaceless %} {% if field.value.values|length() > 0 %} <ul> {% for keyword in field.value.values %} <li>{{ keyword }}</li> {% endfor %} </ul> {% endif %} {% endspaceless %} {% endblock %} |
When overriding a field template block, it is possible to call the "parent" one. For this, you need to import original template horizontally, using
|
Inline override using current template is possible as of 5.2 / 2013.11 |
If you want to override a specific field template only once (i.e. because your override would be only valid in your current template), you can specify the current template to be the source of the field block.
{% extends "MyBundle::pagelayout.html.twig" %} {% block content %} {# Note that "tags" is a field using ezkeyword fieldType #} <div class="tags">{{ ez_render_field( content, "tags" , { "template": _self } ) }}</div> {% endblock %} {# Here begins the inline block for my ezkeyword field #} {% block ezkeyword_field %} {% spaceless %} {% if field.value.values|length() > 0 %} <ul> {% for keyword in field.value.values %} <li>{{ keyword }}</li> {% endfor %} </ul> {% endif %} {% endspaceless %} {% endblock %} |
Using This is basically the same limitation than for Symfony form themes. |
In the case where you want to systematically reuse a field template instead of the default one, you can append it to the field templates list to use by ez_render_field()
.