Home
last modified time | relevance | path

Searched refs:escapers (Results 1 – 3 of 3) sorted by relevance

/plugin/findologicxmlexport/vendor/twig/twig/doc/filters/
H A Descape.rst9 The ability to define custom escapers was added in Twig 1.14.0.
93 You can define custom escapers by calling the ``setEscaper()`` method on the
110 Built-in escapers cannot be overridden mainly they should be considered as
/plugin/findologicxmlexport/vendor/twig/twig/src/Extension/
H A DCoreExtension.php43 protected $escapers = []; variable in Twig\\Extension\\CoreExtension
53 $this->escapers[$strategy] = $callable;
63 return $this->escapers;
1121 static $escapers;
1123 if (null === $escapers) {
1124 $escapers = $env->getExtension('\Twig\Extension\CoreExtension')->getEscapers();
1127 if (isset($escapers[$strategy])) {
1128 return \call_user_func($escapers[$strategy], $env, $string, $charset);
1131 …ies = implode(', ', array_merge(['html', 'js', 'url', 'css', 'html_attr'], array_keys($escapers)));
/plugin/findologicxmlexport/vendor/twig/twig/
H A DCHANGELOG278 * fixed logic for custom escapers to call them even on integers and null values