ezplatform 呈现内容类型中多关系内容项中带有 URL 和对象名称的链接



>现在有谁知道为 ez 平台创建自定义视图类型吗?默认的 3 个已经用完,我们需要一个新的"链接" 或者,有谁知道如何将render( controller(与自定义模板一起使用,因为这也可以立即解决阻止问题。

基本上,我们在使用的内容对象中有一个多关系字段,我们需要打印指向所有相关 contentId 的链接,路径效果很好,但我们无法找到一种方法来提取链接的内容对象的名称,而无需做一些相当时髦的 tpl 逻辑传入参数。

EG:作为现在的黑客,我们可以传入"embed_type"作为自定义参数,render(controller("ez_content:viewAction"为特定内容类型和视图类型的内容对象拉入备用视图。

{% if embed_type is defined %}
{% include "embed/#{embed_type}.html.twig" %}
{% else %}
<h1>{{ ez_field_value( content, 'name') }}</h1>
{% endif %}

但是,这是非常丑陋的,我们真正想做的是为所有内容类型使用 1 个模板,所以我们需要做的就是循环访问关系字段并打印链接(作为内容字段中唯一可用的东西:"目标 ID"(。我确定文档中曾经有此选项,但我再也找不到它了,例如:

{% set links =  ez_field_value( footer, "first_links_row" ).destinationContentIds%}
{% for id in links %}
{{ render(controller("ez_content:viewAction", {"contentId": id, "template": "link.html.twig"})) }}
{% endfor %}

其中链接.html.twig将简单地打印链接:

<a href="{{ path( "ez_urlalias", {"contentId": id} ) }}">
{{ ez_field_value( content, "name" ) }}
</a>

如果无法通过render (controller (帮助程序使用自定义 tpl,那么新的自定义视图类型也可以解决此问题,但我找不到两者的文档。

你可以创建一个树枝函数来做到这一点。我们有这样的东西:

定义:

new Twig_SimpleFunction(
'content_name',
array($this, 'getContentName')
),

实现:

public function getContentName($content, $forcedLanguage = null)
{
if (!$content instanceof Content && !$content instanceof ContentInfo) {
$contentInfo = $this->repository->getContentService()->loadContentInfo($content);
} elseif ($content instanceof Content) {
$contentInfo = $content->contentInfo;
} else {
$contentInfo = $content;
}
return $this->translationHelper->getTranslatedContentNameByContentInfo($contentInfo, $forcedLanguage);
}

这使您能够提供内容 ID、内容信息或内容本身,并返回翻译的内容名称

相关内容

  • 没有找到相关文章

最新更新