public function Twig_TokenParser_AutoEscape::parse in Translation template extractor 6.3
Same name and namespace in other branches
- 7.3 vendor/Twig/TokenParser/AutoEscape.php \Twig_TokenParser_AutoEscape::parse()
Parses a token and returns a node.
Parameters
Twig_Token $token A Twig_Token instance:
Return value
Twig_NodeInterface A Twig_NodeInterface instance
Overrides Twig_TokenParserInterface::parse
File
- vendor/
Twig/ TokenParser/ AutoEscape.php, line 39
Class
- Twig_TokenParser_AutoEscape
- Marks a section of a template to be escaped or not.
Code
public function parse(Twig_Token $token) {
$lineno = $token
->getLine();
$stream = $this->parser
->getStream();
if ($stream
->test(Twig_Token::BLOCK_END_TYPE)) {
$value = 'html';
}
else {
$expr = $this->parser
->getExpressionParser()
->parseExpression();
if (!$expr instanceof Twig_Node_Expression_Constant) {
throw new Twig_Error_Syntax('An escaping strategy must be a string or a Boolean.', $stream
->getCurrent()
->getLine(), $stream
->getFilename());
}
$value = $expr
->getAttribute('value');
$compat = true === $value || false === $value;
if (true === $value) {
$value = 'html';
}
if ($compat && $stream
->test(Twig_Token::NAME_TYPE)) {
if (false === $value) {
throw new Twig_Error_Syntax('Unexpected escaping strategy as you set autoescaping to false.', $stream
->getCurrent()
->getLine(), $stream
->getFilename());
}
$value = $stream
->next()
->getValue();
}
}
$stream
->expect(Twig_Token::BLOCK_END_TYPE);
$body = $this->parser
->subparse(array(
$this,
'decideBlockEnd',
), true);
$stream
->expect(Twig_Token::BLOCK_END_TYPE);
return new Twig_Node_AutoEscape($value, $body, $lineno, $this
->getTag());
}