Hi, in 1.0 you cannot do this cleanly, works only with some very ugly hacks that involve overriding the routing class to get access to private methods and manually modifiing current route state. >From 1.1 on you can do so by invoking $route = sfContext::getInstance()->getRouting()->findRoute($your_db_route_string); which will return you an array containg the yml information. I am not sure how this will be for 1.2 as Fabien is currently refactoring this part, but I assume that you will have the same capabilities there.
Regards .: Fabian On Thu, Sep 11, 2008 at 12:22 PM, brajesh <[EMAIL PROTECTED]> wrote: > > Hi friends, > > Can we use the routing module's parsing code, for parsing some URL's > on demand? > > For example, I have a URL stored in DB...I need to parse it using the > same rules that I have defined in routing.yml... > > Thanks... > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "symfony users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/symfony-users?hl=en -~----------~----~----~----~------~----~------~--~---
