AVAILABLE AS OF 2016.02
Description
ez_field()
is a Twig helper which returns a field value in the current language.
Note that other Twig helpers are available to display specific information of the field. See the the Twig functions page; they all start by ez_field_.
If the current language cannot be found as a translation for content, the main language will be used. This behavior is identical when forcing a language using forcedLanguage.
Prototype and Arguments
ez_field( eZ\Publish\Core\Repository\Values\Content\Content content, string fieldDefIdentifier[, string forcedLanguage] )
Argument name | Type | Description |
---|---|---|
content | eZ\Publish\Core\Repository\Values\Content\Content | Content object the field referred to with fieldDefIdentifier belongs to. |
fieldDefIdentifier | string | Identifier of the field we want to get the value from. |
forcedLanguage | string | Locale we want the content name translation in (e.g. "fre-FR"). Null by default (takes current locale) |
Usage