mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-08 01:36:57 +02:00
[feature/twig] Working on DEFINE
PHPBB3-11598
This commit is contained in:
45
phpBB/includes/template/twig/tokenparser/define.php
Normal file
45
phpBB/includes/template/twig/tokenparser/define.php
Normal file
@@ -0,0 +1,45 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of Twig.
|
||||
*
|
||||
* (c) 2009 Fabien Potencier
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
/**
|
||||
* Defines a variable.
|
||||
*
|
||||
* <pre>
|
||||
* {% set foo = 'foo' %}
|
||||
*
|
||||
* {% set foo = [1, 2] %}
|
||||
*
|
||||
* {% set foo = {'foo': 'bar'} %}
|
||||
*
|
||||
* {% set foo = 'foo' ~ 'bar' %}
|
||||
*
|
||||
* {% set foo, bar = 'foo', 'bar' %}
|
||||
*
|
||||
* {% set foo %}Some content{% endset %}
|
||||
* </pre>
|
||||
*/
|
||||
class phpbb_template_twig_tokenparser_define extends Twig_TokenParser_Set
|
||||
{
|
||||
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';
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user