Is it possible to access every variable defined in a twig template from php?
Eg:
Template:
...
{% set foo = 'foo' %}
...
And from PHP:
echo $template->foo
Or something like that.
|
feedback
|
|
Variables you set in Twig are set into the So, no, you can't use the variables you set in Twig in PHP. | |||||||
feedback
|
|
Accessing every variable is very cumbersome, so what I did in the end was to create an extension which holds the data that I need:
And in the class where I needed the data:
Using this template:
After render:
| |||
|
feedback
|