diff options
Diffstat (limited to 'phpBB/phpbb/template/twig/tokenparser')
| -rw-r--r-- | phpBB/phpbb/template/twig/tokenparser/define.php | 66 | ||||
| -rw-r--r-- | phpBB/phpbb/template/twig/tokenparser/event.php | 47 | ||||
| -rw-r--r-- | phpBB/phpbb/template/twig/tokenparser/include.php | 46 | ||||
| -rw-r--r-- | phpBB/phpbb/template/twig/tokenparser/includecss.php | 38 | ||||
| -rw-r--r-- | phpBB/phpbb/template/twig/tokenparser/includejs.php | 47 | ||||
| -rw-r--r-- | phpBB/phpbb/template/twig/tokenparser/includephp.php | 56 | ||||
| -rw-r--r-- | phpBB/phpbb/template/twig/tokenparser/php.php | 55 | 
7 files changed, 355 insertions, 0 deletions
| diff --git a/phpBB/phpbb/template/twig/tokenparser/define.php b/phpBB/phpbb/template/twig/tokenparser/define.php new file mode 100644 index 0000000000..4ea15388c4 --- /dev/null +++ b/phpBB/phpbb/template/twig/tokenparser/define.php @@ -0,0 +1,66 @@ +<?php +/** +* +* @package phpBB3 +* @copyright (c) 2013 phpBB Group, sections (c) 2009 Fabien Potencier +* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 +* +*/ + +/** +* @ignore +*/ +if (!defined('IN_PHPBB')) +{ +	exit; +} + + +class phpbb_template_twig_tokenparser_define 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) +	{ +		$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(); + +			$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_define($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..e4dddd6dcc --- /dev/null +++ b/phpBB/phpbb/template/twig/tokenparser/event.php @@ -0,0 +1,47 @@ +<?php +/** +* +* @package phpBB3 +* @copyright (c) 2013 phpBB Group +* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 +* +*/ + +/** +* @ignore +*/ +if (!defined('IN_PHPBB')) +{ +	exit; +} + + +class phpbb_template_twig_tokenparser_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/include.php b/phpBB/phpbb/template/twig/tokenparser/include.php new file mode 100644 index 0000000000..520f9fd1a0 --- /dev/null +++ b/phpBB/phpbb/template/twig/tokenparser/include.php @@ -0,0 +1,46 @@ +<?php +/** +* +* @package phpBB3 +* @copyright (c) 2013 phpBB Group, sections (c) 2009 Fabien Potencier +* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 +* +*/ + +/** +* @ignore +*/ +if (!defined('IN_PHPBB')) +{ +	exit; +} + + +class phpbb_template_twig_tokenparser_include 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_include($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/includecss.php b/phpBB/phpbb/template/twig/tokenparser/includecss.php new file mode 100644 index 0000000000..6c24dda647 --- /dev/null +++ b/phpBB/phpbb/template/twig/tokenparser/includecss.php @@ -0,0 +1,38 @@ +<?php +/** +* +* @package phpBB3 +* @copyright (c) 2013 phpBB Group +* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 +* +*/ + +class phpbb_template_twig_tokenparser_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..b02b2f89ba --- /dev/null +++ b/phpBB/phpbb/template/twig/tokenparser/includejs.php @@ -0,0 +1,47 @@ +<?php +/** +* +* @package phpBB3 +* @copyright (c) 2013 phpBB Group +* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 +* +*/ + +/** +* @ignore +*/ +if (!defined('IN_PHPBB')) +{ +	exit; +} + + +class phpbb_template_twig_tokenparser_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/includephp.php b/phpBB/phpbb/template/twig/tokenparser/includephp.php new file mode 100644 index 0000000000..13fe6de8a6 --- /dev/null +++ b/phpBB/phpbb/template/twig/tokenparser/includephp.php @@ -0,0 +1,56 @@ +<?php +/** +* +* @package phpBB3 +* @copyright (c) 2013 phpBB Group, sections (c) 2009 Fabien Potencier, Armin Ronacher +* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 +* +*/ + +/** +* @ignore +*/ +if (!defined('IN_PHPBB')) +{ +	exit; +} + + +class phpbb_template_twig_tokenparser_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(), $ignoreMissing, $token->getLine(), $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..197980a59a --- /dev/null +++ b/phpBB/phpbb/template/twig/tokenparser/php.php @@ -0,0 +1,55 @@ +<?php +/** +* +* @package phpBB3 +* @copyright (c) 2013 phpBB Group +* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 +* +*/ + +/** +* @ignore +*/ +if (!defined('IN_PHPBB')) +{ +	exit; +} + + +class phpbb_template_twig_tokenparser_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'; +    } +} | 
