Top "Twig-filter" questions

Twig filter is about the value-transforming operators in the Twig template engine.

twig filter multiple parameters

I'm trying to create a specific twig filter that can handle 2 parameters. $documentURL = new Twig_SimpleFilter('documentURL', function($DocumentId, $UserId){ $…

php symfony twig twig-filter
Twig - How to randomise items in the array and loop them?

How can I randomise items in the array and loop them? {% for item in article.resources|shuffle|slice(1) %} ... {% endfor %} I …

php arrays twig twig-filter