Twig Extension不适用于Symfony 2

时间:2016-05-03 04:43:35

标签: php symfony twig-extension

我创建了一个Twig Extension来显示不同货币格式的金额,如:印度,美元等..

我按照Symfony2指南的建议进行如下操作。

NameSpace/AccountBundle/Extension/AccountExtension.php

namespace Edu\AccountBundle\Extension;

use Symfony\Component\HttpKernel\KernelInterface;

class AccountTwigExtension extends \Twig_Extension
{
    public function getFilters()
    {
        return array(
            'get_money_indian_format' => new \Twig_Filter_Method($this, 'get_money_indian_format'),
        );
    }

    function get_money_indian_format($amount, $suffix = 1) {
        setlocale(LC_MONETARY, 'en_IN');
        if (ctype_digit($amount) ) {
            // is whole number
            // if not required any numbers after decimal use this format
            $amount = money_format('%!.0n', $amount);
        } else {
            // is not whole number
            $amount = money_format('%!i', $amount);
        }

        if (!$suffix) {
            return $amount;
        } else {
            return $amount;
        }
        return $amount;
    }

    public function getName()
    {
        return 'account_twig_extension';
    }
}

app/config/services.yml注册:

account.twig.extension.accounttwigextension:
        class: AccountBundle\Extension\AccountTwigExtension
        tags:
            - { name: twig.extension }

当我在twig文件中使用它时: {{ 50000 | get_money_indian_format }}

我收到以下错误: get_money_indian_format

中不存在过滤器EduAccountBundle:Ledger:showLedgers.html.twig

1 个答案:

答案 0 :(得分:3)

如果我按原样复制/粘贴您的代码,我会收到错误,因为您的扩展程序是

Edu\AccountBundle\ExtensionAccountTwigExtension

在您的服务定义中,您将其称为

AccountBundle\ExtensionAccountTwigExtension

如果我修复命名空间,一切都按预期工作。