diff options
Diffstat (limited to 'phpBB/phpbb/template/twig/tokenparser')
7 files changed, 52 insertions, 13 deletions
| diff --git a/phpBB/phpbb/template/twig/tokenparser/defineparser.php b/phpBB/phpbb/template/twig/tokenparser/defineparser.php index b755836ccd..6285091e94 100644 --- a/phpBB/phpbb/template/twig/tokenparser/defineparser.php +++ b/phpBB/phpbb/template/twig/tokenparser/defineparser.php @@ -21,7 +21,7 @@ class defineparser extends \Twig_TokenParser  	*  	* @param \Twig_Token $token A Twig_Token instance  	* -	* @return \Twig_NodeInterface A Twig_NodeInterface instance +	* @return \Twig_Node A Twig_Node instance  	* @throws \Twig_Error_Syntax  	* @throws \phpbb\template\twig\node\definenode  	*/ @@ -41,7 +41,7 @@ class defineparser extends \Twig_TokenParser  			{  				// 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()); +				throw new \Twig_Error_Syntax('Invalid DEFINE', $token->getLine(), $this->parser->getStream()->getSourceContext()->getPath());  			}  			$stream->expect(\Twig_Token::BLOCK_END_TYPE); diff --git a/phpBB/phpbb/template/twig/tokenparser/event.php b/phpBB/phpbb/template/twig/tokenparser/event.php index f73ef4ae25..92ecff4a74 100644 --- a/phpBB/phpbb/template/twig/tokenparser/event.php +++ b/phpBB/phpbb/template/twig/tokenparser/event.php @@ -15,12 +15,25 @@ namespace phpbb\template\twig\tokenparser;  class event extends \Twig_TokenParser  { +	/** @var \phpbb\template\twig\environment */ +	protected $environment; + +	/** +	* Constructor +	* +	* @param \phpbb\template\twig\environment $environment +	*/ +	public function __construct(\phpbb\template\twig\environment $environment) +	{ +		$this->environment = $environment; +	} +  	/**  	* Parses a token and returns a node.  	*  	* @param \Twig_Token $token A Twig_Token instance  	* -	* @return \Twig_NodeInterface A Twig_NodeInterface instance +	* @return \Twig_Node A Twig_Node instance  	*/  	public function parse(\Twig_Token $token)  	{ @@ -29,7 +42,7 @@ class event extends \Twig_TokenParser  		$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()); +		return new \phpbb\template\twig\node\event($expr, $this->environment, $token->getLine(), $this->getTag());  	}  	/** diff --git a/phpBB/phpbb/template/twig/tokenparser/includecss.php b/phpBB/phpbb/template/twig/tokenparser/includecss.php index 1f30811754..f7e55a46fb 100644 --- a/phpBB/phpbb/template/twig/tokenparser/includecss.php +++ b/phpBB/phpbb/template/twig/tokenparser/includecss.php @@ -20,7 +20,7 @@ class includecss extends \Twig_TokenParser  	*  	* @param \Twig_Token $token A Twig_Token instance  	* -	* @return \Twig_NodeInterface A Twig_NodeInterface instance +	* @return \Twig_Node A Twig_Node instance  	*/  	public function parse(\Twig_Token $token)  	{ @@ -29,7 +29,7 @@ class includecss extends \Twig_TokenParser  		$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()); +		return new \phpbb\template\twig\node\includecss($expr, $token->getLine(), $this->getTag());  	}  	/** diff --git a/phpBB/phpbb/template/twig/tokenparser/includejs.php b/phpBB/phpbb/template/twig/tokenparser/includejs.php index 4b67d2c468..598ea0a70d 100644 --- a/phpBB/phpbb/template/twig/tokenparser/includejs.php +++ b/phpBB/phpbb/template/twig/tokenparser/includejs.php @@ -20,7 +20,7 @@ class includejs extends \Twig_TokenParser  	*  	* @param \Twig_Token $token A Twig_Token instance  	* -	* @return \Twig_NodeInterface A Twig_NodeInterface instance +	* @return \Twig_Node A Twig_Node instance  	*/  	public function parse(\Twig_Token $token)  	{ @@ -29,7 +29,7 @@ class includejs extends \Twig_TokenParser  		$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()); +		return new \phpbb\template\twig\node\includejs($expr, $token->getLine(), $this->getTag());  	}  	/** diff --git a/phpBB/phpbb/template/twig/tokenparser/includeparser.php b/phpBB/phpbb/template/twig/tokenparser/includeparser.php index aa7236aaa6..2fba4ac4c4 100644 --- a/phpBB/phpbb/template/twig/tokenparser/includeparser.php +++ b/phpBB/phpbb/template/twig/tokenparser/includeparser.php @@ -21,7 +21,7 @@ class includeparser extends \Twig_TokenParser_Include  	*  	* @param \Twig_Token $token A Twig_Token instance  	* -	* @return \Twig_NodeInterface A Twig_NodeInterface instance +	* @return \Twig_Node A Twig_Node instance  	*/  	public function parse(\Twig_Token $token)  	{ diff --git a/phpBB/phpbb/template/twig/tokenparser/includephp.php b/phpBB/phpbb/template/twig/tokenparser/includephp.php index 3992636f8c..2fdf396452 100644 --- a/phpBB/phpbb/template/twig/tokenparser/includephp.php +++ b/phpBB/phpbb/template/twig/tokenparser/includephp.php @@ -16,12 +16,25 @@ namespace phpbb\template\twig\tokenparser;  class includephp extends \Twig_TokenParser  { +	/** @var \phpbb\template\twig\environment */ +	protected $environment; + +	/** +	* Constructor +	* +	* @param \phpbb\template\twig\environment $environment +	*/ +	public function __construct(\phpbb\template\twig\environment $environment) +	{ +		$this->environment = $environment; +	} +  	/**  	* Parses a token and returns a node.  	*  	* @param \Twig_Token $token A Twig_Token instance  	* -	* @return \Twig_NodeInterface A Twig_NodeInterface instance +	* @return \Twig_Node A Twig_Node instance  	*/  	public function parse(\Twig_Token $token)  	{ @@ -40,7 +53,7 @@ class includephp extends \Twig_TokenParser  		$stream->expect(\Twig_Token::BLOCK_END_TYPE); -		return new \phpbb\template\twig\node\includephp($expr, $this->parser->getEnvironment(), $token->getLine(), $ignoreMissing, $this->getTag()); +		return new \phpbb\template\twig\node\includephp($expr, $this->environment, $token->getLine(), $ignoreMissing, $this->getTag());  	}  	/** diff --git a/phpBB/phpbb/template/twig/tokenparser/php.php b/phpBB/phpbb/template/twig/tokenparser/php.php index f11ce35896..3007912b47 100644 --- a/phpBB/phpbb/template/twig/tokenparser/php.php +++ b/phpBB/phpbb/template/twig/tokenparser/php.php @@ -15,12 +15,25 @@ namespace phpbb\template\twig\tokenparser;  class php extends \Twig_TokenParser  { +	/** @var \phpbb\template\twig\environment */ +	protected $environment; + +	/** +	* Constructor +	* +	* @param \phpbb\template\twig\environment $environment +	*/ +	public function __construct(\phpbb\template\twig\environment $environment) +	{ +		$this->environment = $environment; +	} +  	/**  	* Parses a token and returns a node.  	*  	* @param \Twig_Token $token A Twig_Token instance  	* -	* @return \Twig_NodeInterface A Twig_NodeInterface instance +	* @return \Twig_Node A Twig_Node instance  	*/  	public function parse(\Twig_Token $token)  	{ @@ -32,7 +45,7 @@ class php extends \Twig_TokenParser  		$stream->expect(\Twig_Token::BLOCK_END_TYPE); -		return new \phpbb\template\twig\node\php($body, $this->parser->getEnvironment(), $token->getLine(), $this->getTag()); +		return new \phpbb\template\twig\node\php($body, $this->environment, $token->getLine(), $this->getTag());  	}  	public function decideEnd(\Twig_Token $token) | 
