如何动态调用树枝过滤器

时间:2012-08-26 13:31:34

标签: symfony twig

我需要使用特定于每种数据类型的过滤器呈现未知类型的数据:

渲染的结构如下:

array(
    "value"  => "value-to-render",
    "filter" => "filter-to-apply",
)

{% for item in items %}
    {{ item.value|item.filter|raw}}
{% endfor %}

所以我的问题是:如何使用item.filter作为值的过滤器?

5 个答案:

答案 0 :(得分:6)

您必须编写过滤器,它将通过将名称传递给过滤器来调用过滤器。

如何最初为您编写扩展程序,您可以阅读here

假设您已创建扩展程序,则表示您已定义自定义函数(例如customFilter)。

//YourTwigFilterExtension.php

public function getFunctions()
{
    return array(
        ...
        'custom_filter' => new \Twig_Function_Method($this, 'customFilter'),
    );
}

然后,你必须定义这个功能

public function customFilter($context, $filterName)
{
    // handle parameters here, by calling the 
    // appropriate filter and pass $context there
}

在这种操作之后,您将能够在Twig中调用:

{% for item in items %}
    {{ custom_filter(item.value, item.filter)|raw  }}
{% endfor %}

或者,如果您已将过滤器定义为过滤器(而不是函数):

{% for item in items %}
    {{ item.value|custom_filter(item.filter)|raw  }}
{% endfor %}

答案 1 :(得分:0)

这个问题与我的一个问题直接相关:

Show variable inside variable

答案是你需要一种尚不存在的“eval”方法(但很快)。但你也可以创建自己的功能,如@thecatontheflat提到它。

答案 2 :(得分:0)

我刚为此创建了一个Symfony Bundle:

看看这里:https://github.com/marcj/twig-apply_filter-bundle

答案 3 :(得分:0)

这个Twig扩展为我做了诀窍:

<?php

namespace YourNamespace\YourBundle\Twig;

use \Twig_Extension;
use \Twig_SimpleFilter;
use \Twig_Environment;

class ApplyFilterExtension extends Twig_Extension
{
    /**
     * Returns the name of the extension.
     *
     * @return string The extension name
     */
    public function getName()
    {
        return 'apply_filter_twig_extension';
    }

    public function getFilters()
    {
        return array(
            new Twig_SimpleFilter('apply_filter', array($this, 'applyFilter'), [
                    'needs_environment' => true,
                ]
            ));
    }

    public function applyFilter(Twig_Environment $env, $value, $filterName)
    {
        $twigFilter = $env->getFilter($filterName);

        if (!$twigFilter) {
            return $value;
        }

        return call_user_func($twigFilter->getCallable(), $value);
    }
}

然后在你的模板中:

{% for item in items %}
    {{ item.value|apply_filter(item.filter)|raw}}
{% endfor %}

答案 4 :(得分:0)

这是dossorio答案的扩展,它允许链接多个过滤器以及在需要时将额外的参数传递给过滤器:

class applyFiltersExtension extends Twig_Extension
{
    /**
     * Returns the name of the extension.
     *
     * @return string The extension name
     */
    public function getName()
    {
        return 'apply_filters_twig_extension';
    }

    public function getFilters()
    {
        return [
            new Twig_SimpleFilter('apply_filters', [$this, 'applyFilters'], [
                    'needs_environment' => true,
                ]
            )];
    }

    public function applyFilters(Twig_Environment $env, $value, array $filters = null)
    {
        if (empty($filters)) {
            return $value;
        }

        foreach ($filters as $filter) {
            if (is_array($filter)) {
                $filter_name = array_shift($filter);
                $params      = array_merge([$env, $value], $filter);
            } else {
                $filter_name = $filter;
                $params      = [$env, $value];
            }
            $twigFilter = $env->getFilter($filter_name);
            if (empty($twigFilter)) {
                continue;
            }

            $value = call_user_func_array($twigFilter->getCallable(), $params);
        }

        return $value;
    }
}