1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-12-19 10:55:56 +01:00
vichan/inc/lib/Twig/TokenParser/Extends.php

47 lines
1.1 KiB
PHP
Raw Normal View History

2011-10-05 06:22:53 +02:00
<?php
/*
* This file is part of Twig.
*
2018-05-10 12:24:53 +02:00
* (c) Fabien Potencier
* (c) Armin Ronacher
2011-10-05 06:22:53 +02:00
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/**
* Extends a template by another one.
*
* <pre>
* {% extends "base.html" %}
* </pre>
2018-05-10 12:24:53 +02:00
*
* @final
2011-10-05 06:22:53 +02:00
*/
class Twig_TokenParser_Extends extends Twig_TokenParser
{
public function parse(Twig_Token $token)
{
2018-05-10 12:24:53 +02:00
$stream = $this->parser->getStream();
2011-10-05 06:22:53 +02:00
if (!$this->parser->isMainScope()) {
2018-05-10 12:24:53 +02:00
throw new Twig_Error_Syntax('Cannot extend from a block.', $token->getLine(), $stream->getSourceContext());
2011-10-05 06:22:53 +02:00
}
if (null !== $this->parser->getParent()) {
2018-05-10 12:24:53 +02:00
throw new Twig_Error_Syntax('Multiple extends tags are forbidden.', $token->getLine(), $stream->getSourceContext());
2011-10-05 06:22:53 +02:00
}
$this->parser->setParent($this->parser->getExpressionParser()->parseExpression());
2018-05-10 12:24:53 +02:00
$stream->expect(Twig_Token::BLOCK_END_TYPE);
2011-10-05 06:22:53 +02:00
}
public function getTag()
{
return 'extends';
}
}
2018-05-10 12:24:53 +02:00
class_alias('Twig_TokenParser_Extends', 'Twig\TokenParser\ExtendsTokenParser', false);