xfscrypt
xfscrypt

Reputation: 276

Twig: Unknown "localizednumber" filter

When applying the Twig filter "localizednumber", the following error is thrown:

Unknown "localizednumber" filter in MyBundle:Home:home.html.twig at line 558.

I have installed Twig Extensions as well as PHP Intl.

What could be the issue here?

Upvotes: 0

Views: 1895

Answers (1)

Terenoth
Terenoth

Reputation: 2598

Did you declare the Intl Extension in your services?

If not, add this:

<service id="twig.extension.intl"
         class="Twig_Extensions_Extension_Intl">
    <tag name="twig.extension" />
</service>

in your app/config/services.xml.

Upvotes: 3

Related Questions