ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
Include.php
Go to the documentation of this file.
1<?php
2
3/*
4 * This file is part of Twig.
5 *
6 * (c) Fabien Potencier
7 * (c) Armin Ronacher
8 *
9 * For the full copyright and license information, please view the LICENSE
10 * file that was distributed with this source code.
11 */
12
23{
24 public function parse(Twig_Token $token)
25 {
26 $expr = $this->parser->getExpressionParser()->parseExpression();
27
28 list($variables, $only, $ignoreMissing) = $this->parseArguments();
29
30 return new Twig_Node_Include($expr, $variables, $only, $ignoreMissing, $token->getLine(), $this->getTag());
31 }
32
33 protected function parseArguments()
34 {
35 $stream = $this->parser->getStream();
36
37 $ignoreMissing = false;
38 if ($stream->nextIf(Twig_Token::NAME_TYPE, 'ignore')) {
39 $stream->expect(Twig_Token::NAME_TYPE, 'missing');
40
41 $ignoreMissing = true;
42 }
43
44 $variables = null;
45 if ($stream->nextIf(Twig_Token::NAME_TYPE, 'with')) {
46 $variables = $this->parser->getExpressionParser()->parseExpression();
47 }
48
49 $only = false;
50 if ($stream->nextIf(Twig_Token::NAME_TYPE, 'only')) {
51 $only = true;
52 }
53
55
56 return array($variables, $only, $ignoreMissing);
57 }
58
59 public function getTag()
60 {
61 return 'include';
62 }
63}
64
65class_alias('Twig_TokenParser_Include', 'Twig\TokenParser\IncludeTokenParser', false);
An exception for terminatinating execution or to throw for unit testing.
Represents an include node.
Definition: Include.php:19
Includes a template.
Definition: Include.php:23
getTag()
Gets the tag name associated with this token parser.
Definition: Include.php:59
parse(Twig_Token $token)
Parses a token and returns a node.
Definition: Include.php:24
Base class for all token parsers.
Definition: TokenParser.php:18
Represents a Token.
Definition: Token.php:21
const BLOCK_END_TYPE
Definition: Token.php:30
const NAME_TYPE
Definition: Token.php:32
$stream
PHP stream implementation.