composer package updates
[openemr.git] / vendor / twig / twig / lib / Twig / TokenParser / Include.php
blob309f11db4738358106e594bd2866f8e61254d97f
1 <?php
3 /*
4 * This file is part of Twig.
6 * (c) Fabien Potencier
7 * (c) Armin Ronacher
9 * For the full copyright and license information, please view the LICENSE
10 * file that was distributed with this source code.
13 /**
14 * Includes a template.
16 * <pre>
17 * {% include 'header.html' %}
18 * Body
19 * {% include 'footer.html' %}
20 * </pre>
22 class Twig_TokenParser_Include extends Twig_TokenParser
24 public function parse(Twig_Token $token)
26 $expr = $this->parser->getExpressionParser()->parseExpression();
28 list($variables, $only, $ignoreMissing) = $this->parseArguments();
30 return new Twig_Node_Include($expr, $variables, $only, $ignoreMissing, $token->getLine(), $this->getTag());
33 protected function parseArguments()
35 $stream = $this->parser->getStream();
37 $ignoreMissing = false;
38 if ($stream->nextIf(Twig_Token::NAME_TYPE, 'ignore')) {
39 $stream->expect(Twig_Token::NAME_TYPE, 'missing');
41 $ignoreMissing = true;
44 $variables = null;
45 if ($stream->nextIf(Twig_Token::NAME_TYPE, 'with')) {
46 $variables = $this->parser->getExpressionParser()->parseExpression();
49 $only = false;
50 if ($stream->nextIf(Twig_Token::NAME_TYPE, 'only')) {
51 $only = true;
54 $stream->expect(Twig_Token::BLOCK_END_TYPE);
56 return array($variables, $only, $ignoreMissing);
59 public function getTag()
61 return 'include';
65 class_alias('Twig_TokenParser_Include', 'Twig\TokenParser\IncludeTokenParser', false);