PHP Classes

File: Library/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/autoescape/with_pre_escape_filters.test

Recommend this page to a friend!
  Classes of Duong Huynh Nghia   Lego PHP   Library/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/autoescape/with_pre_escape_filters.test   Download  
File: Library/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/autoescape/with_pre_escape_filters.test
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Lego PHP
Blog and shopping cart system
Author: By
Last change:
Date: 7 years ago
Size: 1,449 bytes
 

Contents

Class file image Download
--TEST-- "autoescape" tag applies escaping after calling filters, and before calling pre_escape filters --TEMPLATE-- {% autoescape 'html' %} (nl2br is pre_escaped for "html" and declared safe for "html") 1. Pre-escape and don't post-escape ( var|escape|nl2br ) {{ var|nl2br }} 2. Don't double-pre-escape ( var|escape|nl2br ) {{ var|escape|nl2br }} 3. Don't escape safe values ( var|raw|nl2br ) {{ var|raw|nl2br }} 4. Don't escape safe values ( var|escape|nl2br|nl2br ) {{ var|nl2br|nl2br }} 5. Re-escape values that are escaped for an other contexts ( var|escape_something|escape|nl2br ) {{ var|escape_something|nl2br }} 6. Still escape when using filters not declared safe ( var|escape|nl2br|upper|escape ) {{ var|nl2br|upper }} {% endautoescape %} --DATA-- return array('var' => "<Fabien>\nTwig") --EXPECT-- (nl2br is pre_escaped for "html" and declared safe for "html") 1. Pre-escape and don't post-escape ( var|escape|nl2br ) &lt;Fabien&gt;<br /> Twig 2. Don't double-pre-escape ( var|escape|nl2br ) &lt;Fabien&gt;<br /> Twig 3. Don't escape safe values ( var|raw|nl2br ) <Fabien><br /> Twig 4. Don't escape safe values ( var|escape|nl2br|nl2br ) &lt;Fabien&gt;<br /><br /> Twig 5. Re-escape values that are escaped for an other contexts ( var|escape_something|escape|nl2br ) &lt;FABIEN&gt;<br /> TWIG 6. Still escape when using filters not declared safe ( var|escape|nl2br|upper|escape ) &amp;LT;FABIEN&amp;GT;&lt;BR /&gt; TWIG