Edit on GitHub
Jump to docs navigation

Twig Components / Methods / sandbox

sandbox is a Twig tag to be used to enable the sandboxing mode for an included template, when sandboxing is not enabled globally for the Twig environment:

{% sandbox %}
    {% include 'user.html' %}
{% endsandbox %}

Warning

The sandbox tag is only available when the sandbox extension is enabled (see the Twig for Developers chapter).

Note

The sandbox tag can only be used to sandbox an include tag and it cannot be used to sandbox a section of a template. The following example won't work:

{% sandbox %}
    {% for i in 1..2 %}
        {{ i }}
    {% endfor %}
{% endsandbox %}

Source: Twig



Edit this page on GitHub
Couldn't find what you were looking for? We are happy to help you in the forum, on Slack or on Github.