Answers for "twig is defined"

3

twig is set variable

{# defined works with variable names #}
{% if foo is defined %}
    ...
{% endif %}

{# and attributes on variables names #}
{% if foo.bar is defined %}
    ...
{% endif %}

{% if foo['bar'] is defined %}
    ...
{% endif %}
Posted by: Guest on February-11-2020
1

twig variable is defined

{% if varname is defined %}
	Variable exists.
{% endif %}
Posted by: Guest on February-17-2021

Browse Popular Code Answers by Language