Routing Flashcards
What are ways to configure routes?
Yaml, XML, PHP (with attributes)
Which routes does symfony load in case multiple classes are placed in one file?
Only loads routes for the first class, ignoring all other routes
How can parameter requirements be set directly at the param in the route definition?
With the inline syntax:
#[Route('/blog/{page<\d+>}', name: 'blog_list')]
If multiple routes would match, how can we control which of these routes will be used?
By setting priorities on the route:
#[Route('/blog/list', name: 'blog_list', priority: 2)] public function list(): Response { // ... }
How can you get Request-Data inside services?
Inject the RequestStack-Service
use Symfony\Component\HttpFoundation\RequestStack;
How can you get Request-Data inside a twig file?
E.g.
app.current_route
or for parameters
app.current_route_parameters
How can symfony routing handle different hosts / subdomains?
E.g. m.example.com/blog AND example.com/blog
With a “host”-parameter
#[Route( '/', name: 'mobile_homepage', host: '{subdomain}.example.com', defaults: ['subdomain' => 'm'], requirements: ['subdomain' => 'm|mobile'], )] public function mobileHomepage(): Response { // ... }
Which special controller parameters are there from symfony?
_locale, _fragment, _format, _controller