['html']] ), new TwigFilter( 'js_format', 'PhpMyAdmin\Sanitize::jsFormat', ['is_safe' => ['html']] ), new TwigFilter( 'sanitize', 'PhpMyAdmin\Sanitize::sanitizeMessage', ['is_safe' => ['html']] ), ]; } /** * Returns a list of functions to add to the existing list. * * @return TwigFunction[] */ public function getFunctions() { return [ new TwigFunction( 'get_js_value', 'PhpMyAdmin\Sanitize::getJsValue', ['is_safe' => ['html']] ), ]; } }