Routing Flashcards

1
Q

What are ways to configure routes?

A

Yaml, XML, PHP (with attributes)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Which routes does symfony load in case multiple classes are placed in one file?

A

Only loads routes for the first class, ignoring all other routes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

How can parameter requirements be set directly at the param in the route definition?

A

With the inline syntax:

#[Route('/blog/{page<\d+>}', name: 'blog_list')]
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

If multiple routes would match, how can we control which of these routes will be used?

A

By setting priorities on the route:

    #[Route('/blog/list', name: 'blog_list', priority: 2)]
    public function list(): Response
    {
        // ...
    }
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How can you get Request-Data inside services?

A

Inject the RequestStack-Service

use Symfony\Component\HttpFoundation\RequestStack;
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

How can you get Request-Data inside a twig file?

A

E.g.

app.current_route

or for parameters

app.current_route_parameters
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

How can symfony routing handle different hosts / subdomains?
E.g. m.example.com/blog AND example.com/blog

A

With a “host”-parameter

    #[Route(
        '/',
        name: 'mobile_homepage',
        host: '{subdomain}.example.com',
        defaults: ['subdomain' => 'm'],
        requirements: ['subdomain' => 'm|mobile'],
    )]
    public function mobileHomepage(): Response
    {
        // ...
    }
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Which special controller parameters are there from symfony?

A

_locale, _fragment, _format, _controller

How well did you know this?
1
Not at all
2
3
4
5
Perfectly