diff options
Diffstat (limited to 'phpBB/phpbb/template/twig/tokenparser')
| -rw-r--r-- | phpBB/phpbb/template/twig/tokenparser/defineparser.php | 74 | ||||
| -rw-r--r-- | phpBB/phpbb/template/twig/tokenparser/event.php | 45 | ||||
| -rw-r--r-- | phpBB/phpbb/template/twig/tokenparser/includecss.php | 44 | ||||
| -rw-r--r-- | phpBB/phpbb/template/twig/tokenparser/includejs.php | 45 | ||||
| -rw-r--r-- | phpBB/phpbb/template/twig/tokenparser/includeparser.php | 45 | ||||
| -rw-r--r-- | phpBB/phpbb/template/twig/tokenparser/includephp.php | 55 | ||||
| -rw-r--r-- | phpBB/phpbb/template/twig/tokenparser/php.php | 53 | 
7 files changed, 361 insertions, 0 deletions
| diff --git a/phpBB/phpbb/template/twig/tokenparser/defineparser.php b/phpBB/phpbb/template/twig/tokenparser/defineparser.php new file mode 100644 index 0000000000..cfee84a363 --- /dev/null +++ b/phpBB/phpbb/template/twig/tokenparser/defineparser.php @@ -0,0 +1,74 @@ +<?php +/** +* +* This file is part of the phpBB Forum Software package. +* +* @copyright (c) phpBB Limited <https://www.phpbb.com> +* @copyright Portions (c) 2009 Fabien Potencier, Armin Ronacher +* @license GNU General Public License, version 2 (GPL-2.0) +* +* For full copyright and license information, please see +* the docs/CREDITS.txt file. +* +*/ + +namespace phpbb\template\twig\tokenparser; + + +class defineparser extends \Twig_TokenParser +{ +	/** +	* Parses a token and returns a node. +	* +	* @param \Twig_Token $token A Twig_Token instance +	* +	* @return \Twig_NodeInterface A Twig_NodeInterface instance +	* @throws \Twig_Error_Syntax +	* @throws \phpbb\template\twig\node\definenode +	*/ +	public function parse(\Twig_Token $token) +	{ +		$lineno = $token->getLine(); +		$stream = $this->parser->getStream(); +		$name = $this->parser->getExpressionParser()->parseExpression(); + +		$capture = false; +		if ($stream->test(\Twig_Token::OPERATOR_TYPE, '=')) { +			$stream->next(); +			$value = $this->parser->getExpressionParser()->parseExpression(); + +			if ($value instanceof \Twig_Node_Expression_Name) +			{ +				// This would happen if someone improperly formed their DEFINE syntax +				// e.g. <!-- DEFINE $VAR = foo --> +				throw new \Twig_Error_Syntax('Invalid DEFINE', $token->getLine(), $this->parser->getFilename()); +			} + +			$stream->expect(\Twig_Token::BLOCK_END_TYPE); +		} else { +			$capture = true; + +			$stream->expect(\Twig_Token::BLOCK_END_TYPE); + +			$value = $this->parser->subparse(array($this, 'decideBlockEnd'), true); +			$stream->expect(\Twig_Token::BLOCK_END_TYPE); +		} + +		return new \phpbb\template\twig\node\definenode($capture, $name, $value, $lineno, $this->getTag()); +	} + +	public function decideBlockEnd(\Twig_Token $token) +	{ +		return $token->test('ENDDEFINE'); +	} + +	/** +	* Gets the tag name associated with this token parser. +	* +	* @return string The tag name +	*/ +	public function getTag() +	{ +		return 'DEFINE'; +	} +} diff --git a/phpBB/phpbb/template/twig/tokenparser/event.php b/phpBB/phpbb/template/twig/tokenparser/event.php new file mode 100644 index 0000000000..4c7c8e07d9 --- /dev/null +++ b/phpBB/phpbb/template/twig/tokenparser/event.php @@ -0,0 +1,45 @@ +<?php +/** +* +* This file is part of the phpBB Forum Software package. +* +* @copyright (c) phpBB Limited <https://www.phpbb.com> +* @license GNU General Public License, version 2 (GPL-2.0) +* +* For full copyright and license information, please see +* the docs/CREDITS.txt file. +* +*/ + +namespace phpbb\template\twig\tokenparser; + + +class event extends \Twig_TokenParser +{ +	/** +	* Parses a token and returns a node. +	* +	* @param \Twig_Token $token A Twig_Token instance +	* +	* @return \Twig_NodeInterface A Twig_NodeInterface instance +	*/ +	public function parse(\Twig_Token $token) +	{ +		$expr = $this->parser->getExpressionParser()->parseExpression(); + +		$stream = $this->parser->getStream(); +		$stream->expect(\Twig_Token::BLOCK_END_TYPE); + +		return new \phpbb\template\twig\node\event($expr, $this->parser->getEnvironment(), $token->getLine(), $this->getTag()); +	} + +	/** +	* Gets the tag name associated with this token parser. +	* +	* @return string The tag name +	*/ +	public function getTag() +	{ +		return 'EVENT'; +	} +} diff --git a/phpBB/phpbb/template/twig/tokenparser/includecss.php b/phpBB/phpbb/template/twig/tokenparser/includecss.php new file mode 100644 index 0000000000..1f30811754 --- /dev/null +++ b/phpBB/phpbb/template/twig/tokenparser/includecss.php @@ -0,0 +1,44 @@ +<?php +/** +* +* This file is part of the phpBB Forum Software package. +* +* @copyright (c) phpBB Limited <https://www.phpbb.com> +* @license GNU General Public License, version 2 (GPL-2.0) +* +* For full copyright and license information, please see +* the docs/CREDITS.txt file. +* +*/ + +namespace phpbb\template\twig\tokenparser; + +class includecss extends \Twig_TokenParser +{ +	/** +	* Parses a token and returns a node. +	* +	* @param \Twig_Token $token A Twig_Token instance +	* +	* @return \Twig_NodeInterface A Twig_NodeInterface instance +	*/ +	public function parse(\Twig_Token $token) +	{ +		$expr = $this->parser->getExpressionParser()->parseExpression(); + +		$stream = $this->parser->getStream(); +		$stream->expect(\Twig_Token::BLOCK_END_TYPE); + +		return new \phpbb\template\twig\node\includecss($expr, $this->parser->getEnvironment(), $token->getLine(), $this->getTag()); +	} + +	/** +	* Gets the tag name associated with this token parser. +	* +	* @return string The tag name +	*/ +	public function getTag() +	{ +		return 'INCLUDECSS'; +	} +} diff --git a/phpBB/phpbb/template/twig/tokenparser/includejs.php b/phpBB/phpbb/template/twig/tokenparser/includejs.php new file mode 100644 index 0000000000..4156048e42 --- /dev/null +++ b/phpBB/phpbb/template/twig/tokenparser/includejs.php @@ -0,0 +1,45 @@ +<?php +/** +* +* This file is part of the phpBB Forum Software package. +* +* @copyright (c) phpBB Limited <https://www.phpbb.com> +* @license GNU General Public License, version 2 (GPL-2.0) +* +* For full copyright and license information, please see +* the docs/CREDITS.txt file. +* +*/ + +namespace phpbb\template\twig\tokenparser; + + +class includejs extends \Twig_TokenParser +{ +	/** +	* Parses a token and returns a node. +	* +	* @param \Twig_Token $token A Twig_Token instance +	* +	* @return \Twig_NodeInterface A Twig_NodeInterface instance +	*/ +	public function parse(\Twig_Token $token) +	{ +		$expr = $this->parser->getExpressionParser()->parseExpression(); + +		$stream = $this->parser->getStream(); +		$stream->expect(\Twig_Token::BLOCK_END_TYPE); + +		return new \phpbb\template\twig\node\includejs($expr, $this->parser->getEnvironment(), $token->getLine(), $this->getTag()); +	} + +	/** +	* Gets the tag name associated with this token parser. +	* +	* @return string The tag name +	*/ +	public function getTag() +	{ +		return 'INCLUDEJS'; +	} +} diff --git a/phpBB/phpbb/template/twig/tokenparser/includeparser.php b/phpBB/phpbb/template/twig/tokenparser/includeparser.php new file mode 100644 index 0000000000..6ee78e5562 --- /dev/null +++ b/phpBB/phpbb/template/twig/tokenparser/includeparser.php @@ -0,0 +1,45 @@ +<?php +/** +* +* This file is part of the phpBB Forum Software package. +* +* @copyright (c) phpBB Limited <https://www.phpbb.com> +* @copyright Portions (c) 2009 Fabien Potencier, Armin Ronacher +* @license GNU General Public License, version 2 (GPL-2.0) +* +* For full copyright and license information, please see +* the docs/CREDITS.txt file. +* +*/ + +namespace phpbb\template\twig\tokenparser; + + +class includeparser extends \Twig_TokenParser_Include +{ +	/** +	* Parses a token and returns a node. +	* +	* @param \Twig_Token $token A Twig_Token instance +	* +	* @return \Twig_NodeInterface A Twig_NodeInterface instance +	*/ +	public function parse(\Twig_Token $token) +	{ +		$expr = $this->parser->getExpressionParser()->parseExpression(); + +		list($variables, $only, $ignoreMissing) = $this->parseArguments(); + +		return new \phpbb\template\twig\node\includenode($expr, $variables, $only, $ignoreMissing, $token->getLine(), $this->getTag()); +	} + +	/** +	* Gets the tag name associated with this token parser. +	* +	* @return string The tag name +	*/ +	public function getTag() +	{ +		return 'INCLUDE'; +	} +} diff --git a/phpBB/phpbb/template/twig/tokenparser/includephp.php b/phpBB/phpbb/template/twig/tokenparser/includephp.php new file mode 100644 index 0000000000..38196c5290 --- /dev/null +++ b/phpBB/phpbb/template/twig/tokenparser/includephp.php @@ -0,0 +1,55 @@ +<?php +/** +* +* This file is part of the phpBB Forum Software package. +* +* @copyright (c) phpBB Limited <https://www.phpbb.com> +* @copyright Portions (c) 2009 Fabien Potencier, Armin Ronacher +* @license GNU General Public License, version 2 (GPL-2.0) +* +* For full copyright and license information, please see +* the docs/CREDITS.txt file. +* +*/ + +namespace phpbb\template\twig\tokenparser; + + +class includephp extends \Twig_TokenParser +{ +	/** +	* Parses a token and returns a node. +	* +	* @param \Twig_Token $token A Twig_Token instance +	* +	* @return \Twig_NodeInterface A Twig_NodeInterface instance +	*/ +	public function parse(\Twig_Token $token) +	{ +		$expr = $this->parser->getExpressionParser()->parseExpression(); + +		$stream = $this->parser->getStream(); + +		$ignoreMissing = false; +		if ($stream->test(\Twig_Token::NAME_TYPE, 'ignore')) { +			$stream->next(); +			$stream->expect(\Twig_Token::NAME_TYPE, 'missing'); + +			$ignoreMissing = true; +		} + +		$stream->expect(\Twig_Token::BLOCK_END_TYPE); + +		return new \phpbb\template\twig\node\includephp($expr, $this->parser->getEnvironment(), $token->getLine(), $ignoreMissing, $this->getTag()); +	} + +	/** +	* Gets the tag name associated with this token parser. +	* +	* @return string The tag name +	*/ +	public function getTag() +	{ +		return 'INCLUDEPHP'; +	} +} diff --git a/phpBB/phpbb/template/twig/tokenparser/php.php b/phpBB/phpbb/template/twig/tokenparser/php.php new file mode 100644 index 0000000000..557a70cca1 --- /dev/null +++ b/phpBB/phpbb/template/twig/tokenparser/php.php @@ -0,0 +1,53 @@ +<?php +/** +* +* This file is part of the phpBB Forum Software package. +* +* @copyright (c) phpBB Limited <https://www.phpbb.com> +* @license GNU General Public License, version 2 (GPL-2.0) +* +* For full copyright and license information, please see +* the docs/CREDITS.txt file. +* +*/ + +namespace phpbb\template\twig\tokenparser; + + +class php extends \Twig_TokenParser +{ +	/** +	* Parses a token and returns a node. +	* +	* @param \Twig_Token $token A Twig_Token instance +	* +	* @return \Twig_NodeInterface A Twig_NodeInterface instance +	*/ +	public function parse(\Twig_Token $token) +	{ +		$stream = $this->parser->getStream(); + +		$stream->expect(\Twig_Token::BLOCK_END_TYPE); + +		$body = $this->parser->subparse(array($this, 'decideEnd'), true); + +		$stream->expect(\Twig_Token::BLOCK_END_TYPE); + +		return new \phpbb\template\twig\node\php($body, $this->parser->getEnvironment(), $token->getLine(), $this->getTag()); +	} + +	public function decideEnd(\Twig_Token $token) +	{ +		return $token->test('ENDPHP'); +	} + +	/** +	* Gets the tag name associated with this token parser. +	* +	* @return string The tag name +	*/ +	public function getTag() +	{ +		return 'PHP'; +	} +} | 
