Home
last modified time | relevance | path

Searched refs:twig_escape_filter (Results 1 – 6 of 6) sorted by relevance

/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/
H A DescapingTest.php180 $this->assertEquals('', twig_escape_filter($this->env, '', 'js'));
185 $this->assertEquals('123', twig_escape_filter($this->env, '123', 'js'));
197 $this->assertEquals('', twig_escape_filter($this->env, '', 'css'));
202 $this->assertEquals('123', twig_escape_filter($this->env, '123', 'css'));
269 $this->assertEquals($literal, twig_escape_filter($this->env, $literal, 'js'));
273 $this->assertEquals($literal, twig_escape_filter($this->env, $literal, 'js'));
277 twig_escape_filter($this->env, $literal, 'js'),
292 … $this->assertEquals($literal, twig_escape_filter($this->env, $literal, 'html_attr'));
300 twig_escape_filter($this->env, $literal, 'html_attr'),
315 $this->assertEquals($literal, twig_escape_filter($this->env, $literal, 'css'));
[all …]
H A DIntegrationTest.php204 return $this->nl2br(twig_escape_filter($env, $value, 'html'), $sep);
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Extension/
H A DCoreTest.php142 $this->assertSame($expected, twig_escape_filter($twig, $string, $strategy));
159twig_escape_filter(new Environment($this->getMockBuilder('\Twig\Loader\LoaderInterface')->getMock(…
/plugin/findologicxmlexport/vendor/twig/twig/doc/
H A Dinternals.rst131 …echo twig_escape_filter($this->env, (isset($context["name"]) ? $context["name"] : null), "html", n…
/plugin/findologicxmlexport/vendor/twig/twig/src/Extension/
H A DCoreExtension.php1002 function twig_escape_filter(Environment $env, $string, $strategy = 'html', $charset = null, $autoes… function
/plugin/findologicxmlexport/vendor/twig/twig/
H A DCHANGELOG974 'escape' => array('twig_escape_filter', true),
978 'escape' => new Twig_Filter_Function('twig_escape_filter', array('needs_environment' => true)),