⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.40
Server IP:
178.33.27.10
Server:
Linux cpanel.dev-unit.com 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
Server Software:
Apache/2.4.62 (Unix) OpenSSL/1.0.2k-fips
PHP Version:
8.2.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
local
/
cwpsrv
/
var
/
services
/
twig
/
doc
/
tags
/
View File Name :
sandbox.rst
``sandbox`` =========== The ``sandbox`` tag can be used to enable the sandboxing mode for an included template, when sandboxing is not enabled globally for the Twig environment: .. code-block:: jinja {% sandbox %} {% include 'user.html' %} {% endsandbox %} .. warning:: The ``sandbox`` tag is only available when the sandbox extension is enabled (see the :doc:`Twig for Developers<../api>` 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: .. code-block:: jinja {% sandbox %} {% for i in 1..2 %} {{ i }} {% endfor %} {% endsandbox %}