Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Get current URL in Twig template?

Tags:

twig

symfony

I looked around for the code to get the current path in a Twig template (and not the full URL), i.e. I don't want http://www.sitename.com/page, I only need /page.

like image 316
Mark Cibor Avatar asked Feb 21 '12 13:02

Mark Cibor


7 Answers

{{ path(app.request.attributes.get('_route'),
     app.request.attributes.get('_route_params')) }}

If you want to read it into a view variable:

{% set currentPath = path(app.request.attributes.get('_route'),
                       app.request.attributes.get('_route_params')) %}

The app global view variable contains all sorts of useful shortcuts, such as app.session and app.security.token.user, that reference the services you might use in a controller.

like image 171
Rodney Folz Avatar answered Oct 05 '22 17:10

Rodney Folz


Get current url: {{ app.request.uri }} in Symfony 2.3, 3, 4, 5


Get path only: {{ app.request.pathinfo }} (without parameters)


Get request uri: {{ app.request.requesturi }} (with parameters)

like image 27
e382df99a7950919789725ceeec126 Avatar answered Oct 01 '22 17:10

e382df99a7950919789725ceeec126


In symfony 2.1 you can use this:

{{ path(app.request.attributes.get('_route'), 
        app.request.attributes.get('_route_params')) }}

In symfony 2.0, one solution is to write a twig extension for this

public function getFunctions()
{
    return array(
        'my_router_params' => new \Twig_Function_Method($this, 'routerParams'),
    );
}

/**
 * Emulating the symfony 2.1.x $request->attributes->get('_route_params') feature.
 * Code based on PagerfantaBundle's twig extension.
 */
public function routerParams()
{
    $router = $this->container->get('router');
    $request = $this->container->get('request');

    $routeName = $request->attributes->get('_route');
    $routeParams = $request->query->all();
    foreach ($router->getRouteCollection()->get($routeName)->compile()->getVariables() as $variable) {
        $routeParams[$variable] = $request->attributes->get($variable);
    }

    return $routeParams;
}

And use like this

{{ path(app.request.attributes.get('_route'), my_router_params()|merge({'additional': 'value'}) }}

You won't need all this unless you want to add additional parameters to your links, like in a pager, or you want to change one of the parameters.

like image 43
Bártfai Tamás Avatar answered Oct 01 '22 17:10

Bártfai Tamás


You can get the current URL in Twig like this:

{{ app.request.schemeAndHttpHost ~ app.request.requestUri }}
like image 20
Zaheer Babar Avatar answered Oct 03 '22 17:10

Zaheer Babar


It should be noted that if you have additional query parameters in your URL, which are not part of the configured route, the accepted answer will not include them in the current URL (path).

Why would you want extra parameters?

For example, if you have a list page with records that can be filtered by keyword and the page has pagination, most likely the query variables for "keyword" and "page" will not be in your route. But in your forward and back buttons for paging, you need the full current URL (that contains the keywords so the next page is still filtered). And you need to modify the page variable.

How to Merge In Extra Query Parameters

So you can get the current route, and merge in the extra variables (after modifying one or more of those extra variables). Note that you are merging in your own variables to the app.request.query.all, and then merging that array into the app.request.attributes.get('_route_params'). The path() method requires that you provide all the required parameters of the route, which is why you need to include the _route_params.

{{ path(app.request.attributes.get('_route'), app.request.attributes.get('_route_params')|merge(app.request.query.all|merge({'page': 2 }))) }}

That's really ugly, but if you are developing pagination, you will need to modify the page variable on each separate link, so you have to include the whole thing each time. Perhaps others have a better solution.

like image 20
Chadwick Meyer Avatar answered Oct 02 '22 17:10

Chadwick Meyer


Using Symfony 5 you can use this:

{{ app.request.uri }}
like image 24
L3xpert Avatar answered Oct 02 '22 17:10

L3xpert


If you are using Silex 2 you can not access the Request object anymore.

You can access the current request attributes this way.

app.request_stack.currentrequest.attributes.get('_route')

And to generate the full current URL : path(app.request_stack.currentrequest.attributes.get('_route'), app.request_stack.currentrequest.attributes.get('_route_params'))

like image 36
Tim Avatar answered Oct 05 '22 17:10

Tim