In PHP templates I can use php functions, for example:

foreach ($users as $user){
  echo someFunction($user->getName());
}

How can I make it in TWIG?

{% for user in users %}
    * {{ user.name }}
{% else %}
    No user have been found.
{% endfor %}

How do I achieve this?

Thanks in advance.

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

What you need are functions or filters. You can easily add these using the examples.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.