Is it possible to retrieve info about a certain route by its name, or get a list of all routes?
I need to be able to fetch the _controller
value in defaults
for any route, not only the current.
Is this possible and how?
P.S.: I found I could get the path to the routes YAML being used, but reparsing it seems unnecessary and heavy.
I am really good at answering my own questions..
To get routes use getRouteCollection()
on the router ($this -> get('router') -> getRouteCollection()
inside a controller), then you get RouteCollection instance on which you can all()
or get($name)
.