PHP Classes

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

Recommend this page to a friend!
  Classes of Duong Huynh Nghia   Lego PHP   Library/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/autoescape/type.test   Download  
File: Library/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/autoescape/type.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,480 bytes
 

Contents

Class file image Download
--TEST-- escape types --TEMPLATE-- 1. autoescape 'html' |escape('js') {% autoescape 'html' %} <a onclick="alert(&quot;{{ msg|escape('js') }}&quot;)"></a> {% endautoescape %} 2. autoescape 'html' |escape('js') {% autoescape 'html' %} <a onclick="alert(&quot;{{ msg|escape('js') }}&quot;)"></a> {% endautoescape %} 3. autoescape 'js' |escape('js') {% autoescape 'js' %} <a onclick="alert(&quot;{{ msg|escape('js') }}&quot;)"></a> {% endautoescape %} 4. no escape {% autoescape false %} <a onclick="alert(&quot;{{ msg }}&quot;)"></a> {% endautoescape %} 5. |escape('js')|escape('html') {% autoescape false %} <a onclick="alert(&quot;{{ msg|escape('js')|escape('html') }}&quot;)"></a> {% endautoescape %} 6. autoescape 'html' |escape('js')|escape('html') {% autoescape 'html' %} <a onclick="alert(&quot;{{ msg|escape('js')|escape('html') }}&quot;)"></a> {% endautoescape %} --DATA-- return array('msg' => "<>\n'\"") --EXPECT-- 1. autoescape 'html' |escape('js') <a onclick="alert(&quot;\x3C\x3E\x0A\x27\x22&quot;)"></a> 2. autoescape 'html' |escape('js') <a onclick="alert(&quot;\x3C\x3E\x0A\x27\x22&quot;)"></a> 3. autoescape 'js' |escape('js') <a onclick="alert(&quot;\x3C\x3E\x0A\x27\x22&quot;)"></a> 4. no escape <a onclick="alert(&quot;<> '"&quot;)"></a> 5. |escape('js')|escape('html') <a onclick="alert(&quot;\x3C\x3E\x0A\x27\x22&quot;)"></a> 6. autoescape 'html' |escape('js')|escape('html') <a onclick="alert(&quot;\x3C\x3E\x0A\x27\x22&quot;)"></a>