ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
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 
65 class_alias('Twig_TokenParser_Include', 'Twig\TokenParser\IncludeTokenParser', false);
Includes a template.
Definition: Include.php:22
Represents an include node.
Definition: Include.php:18
$stream
PHP stream implementation.
getTag()
Gets the tag name associated with this token parser.
Definition: Include.php:59
Base class for all token parsers.
Definition: TokenParser.php:17
Create styles array
The data for the language used.
parse(Twig_Token $token)
Parses a token and returns a node.
Definition: Include.php:24
getLine()
Definition: Token.php:87
const NAME_TYPE
Definition: Token.php:32
const BLOCK_END_TYPE
Definition: Token.php:30