argument pass optiomization

This commit is contained in:
ghost 2023-10-09 23:41:59 +03:00
parent f88f1c63f2
commit 1495378a4b
2 changed files with 7 additions and 11 deletions

View File

@ -18,7 +18,11 @@
</a>
{% block header_search %}
{{ render(controller(
'App\\Controller\\SearchController::module'
'App\\Controller\\SearchController::module',
{
query : app.request.get('query'),
type : app.request.get('type')
}
)) }}
{% endblock %}
</div>
@ -33,7 +37,7 @@
{% block main_profile %}
{{ render(controller(
'App\\Controller\\UserController::module',
{route : app.request.get('_route')}
{ route : app.request.get('_route') }
)) }}
{% endblock %}
{% block main_content %}{% endblock %}

View File

@ -1,10 +1,2 @@
{% extends 'default/layout.html.twig' %}
{% block title %}{{ query }} - {{'Search'|trans }} - {{ name }}{% endblock %}
{% block header_search %}
{{ render(controller(
'App\\Controller\\SearchController::module',
{
query : query
}
)) }}
{% endblock %}
{% block title %}{{ query }} - {{'Search'|trans }} - {{ name }}{% endblock %}