Twig API
Class

Twig_TokenParser_Macro

class Twig_TokenParser_Macro extends Twig_TokenParser

Defines a macro.

<pre>
{% macro input(name, value, type, size) %}
<input type="{{ type|default('text') }}" name="{{ name }}" value="{{ value|e }}" size="{{ size|default(20) }}" />
{% endmacro %}
</pre>

Methods

setParser(Twig_Parser $parser)

Sets the parser associated with this token parser

from Twig_TokenParser
Twig_NodeInterface parse(Twig_Token $token)

Parses a token and returns a node.

decideBlockEnd(Twig_Token $token)

string getTag()

Gets the tag name associated with this token parser.

Details

in Twig_TokenParser at line 30
public setParser(Twig_Parser $parser)

Sets the parser associated with this token parser

Parameters

Twig_Parser $parser A Twig_Parser instance

at line 30
public Twig_NodeInterface parse(Twig_Token $token)

Parses a token and returns a node.

Parameters

Twig_Token $token A Twig_Token instance

Return Value

Twig_NodeInterface A Twig_NodeInterface instance

at line 56
public decideBlockEnd(Twig_Token $token)

Parameters

Twig_Token $token

at line 66
public string getTag()

Gets the tag name associated with this token parser.

Return Value

string The tag name