Answers for "twig symfony"

PHP
0

twig symfony get route

{% set current_path = app.request.get('_route') %}
{{ current_path }}
Posted by: Guest on February-17-2020
0

symfony twig global

# config/packages/twig.yaml
twig:
    # ...
    globals:
        ga_tracking: 'UA-xxxxx-x'
//Use with <p>The Google tracking code is: {{ ga_tracking }}</p>
Posted by: Guest on October-13-2021
0

controller to render static data symfony

{# templates/base.html.twig #}

{# ... #}
<div id="sidebar">
    {# if the controller is associated with a route, use the path() or url() functions #}
    {{ render(path('latest_articles', {max: 3})) }}
    {{ render(url('latest_articles', {max: 3})) }}

    {# if you don't want to expose the controller with a public URL,
       use the controller() function to define the controller to execute #}
    {{ render(controller(
        'App\\Controller\\BlogController::recentArticles', {max: 3}
    )) }}
</div>
Posted by: Guest on October-03-2019

Browse Popular Code Answers by Language