following simple code:

<li><a href="{{ path('_list') }}">List</a></li>

is there a simple way to add an class="active" if the current page matches the _list route?

using the newest PR-Release of symfony2 and twig as template engine

link|improve this question

feedback

2 Answers

up vote 9 down vote accepted

Twig allows for conditionals and the Request object is available throughout the application. If you are including the template, to get the route you want to use:

app.request.attributes.get('_route')

If you are using the render function, you want to use:

app.request.attributes.get('_internal')

With that, you should be able to use:

class="{% if app.request.attributes.get('_route') == '_list' %}active{% endif %}"
link|improve this answer
yeah, i found the _route param a few minutes ago in the sourcecode, but i passed it as a variable to the template, because i didn't know that i can access the request variable directly from twig. thats awesome, thanks ! – choise Apr 18 '11 at 14:32
Might be more recent, but app.request.get('_route') also works. – Louis-Philippe Huberdeau Jan 30 at 21:36
feedback

i found a very good Bundle that handles all this stuff automagically:

http://symfony2bundles.org/knplabs/MenuBundle

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.