[symfony-users] Re: [Symfony2] Highlighting menu based on controller called

2011-05-13 Thread Filipe La Ruina
I ended up putting a variable in the view indicating the menu that should be highlighted. So now my tests are if (menu == 'foo') Still, I think it is not good, will look for a better way in the future (like knowing in the view the controller that was called?) -- If you want to report a vulnerab

[symfony-users] Re: [Symfony2] Highlighting menu based on controller called

2011-05-12 Thread Geoff G
It might be better to specify a route on each menu link and see if the current route == link route. -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this message because you are subscribed to the Google Groups "symfony us

[symfony-users] Re: [Symfony2] Highlighting menu based on controller called

2011-05-12 Thread Carl
I've been looking for a way to do something similar. I want to highlight a menu item if the user is in a particular category on the site. I use the Knplabs MenuBundle for menus on my site but it uses the full URL for checking to see if it should highlight a particular menu item. Without adding