This Twig helper is available as of eZ Publish 5.2 / 2013.09 |
ez_content_name()
is a Twig helper allowing to display a Content item's name in the current language.
If the current language cannot be found as a translation for content, name in main language is always returned. This behavior is identical when forcing a language. |
ez_content_name( eZ\Publish\Core\Repository\Values\Content\Content content[, string forcedLanguage] )
ez_content_name(contentInfo[, string forcedLanguage] )
Argument name | Type | Description |
---|---|---|
content | eZ\Publish\Core\Repository\Values\Content\Content or
| Content or ContentInfo object the displayable field belongs to. |
forcedLanguage | string | Locale we want the content name translation in (e.g. "fre-FR"). Null by default (takes current locale) |
<h2>Content name in current language: {{ ez_content_name( content ) }}</h2> <h2>Content name in current language, from ContentInfo: {{ ez_content_name( content.contentInfo ) }}</h2> <h2>Content name in french (forced): {{ ez_content_name( content, "fre-FR" ) }}</h2> |