* {% 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 %} * */ 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'; } }