class CoreMacros extends MacroSet

Basic macros for Latte.

Methods

static void
install(Compiler $compiler)

No description

void
initialize()

Initializes before template parsing.

finalize()

Finishes template parsing.

string
macroIf(MacroNode $node, PhpWriter $writer)

{if ...}

string
macroEndIf(MacroNode $node, PhpWriter $writer)

{/if ...}

string
macroElse(MacroNode $node, PhpWriter $writer)

{else}

string
macroElseIf(MacroNode $node, PhpWriter $writer)

{elseif} {elseifset}

void
macroIfContent(MacroNode $node, PhpWriter $writer)

n:ifcontent

void
macroEndIfContent(MacroNode $node, PhpWriter $writer)

n:ifcontent

void
macroIfChanged(MacroNode $node, PhpWriter $writer)

{ifchanged [...]}

void
macroTry(MacroNode $node, PhpWriter $writer)

{try}

string
macroRollback(MacroNode $node, PhpWriter $writer)

{rollback}

string
macroTranslate(MacroNode $node, PhpWriter $writer)

{_$var |modifiers}

string
macroInclude(MacroNode $node, PhpWriter $writer)

{include [file] "file" [with blocks] [,] [params]}

string
macroSandbox(MacroNode $node, PhpWriter $writer)

{sandbox "file" [,] [params]}

string
macroCapture(MacroNode $node, PhpWriter $writer)

{capture $variable}

string
macroCaptureEnd(MacroNode $node, PhpWriter $writer)

{/capture}

void
macroSpaceless(MacroNode $node, PhpWriter $writer)

{spaceless} ... {/spaceless}

string
macroWhile(MacroNode $node, PhpWriter $writer)

{while ...}

string
macroEndWhile(MacroNode $node, PhpWriter $writer)

{/while ...}

void
macroEndForeach(MacroNode $node, PhpWriter $writer)

{foreach ...}

void
macroIterateWhile(MacroNode $node, PhpWriter $writer)

{iterateWhile ...}

void
macroEndIterateWhile(MacroNode $node, PhpWriter $writer)

{/iterateWhile ...}

string
macroBreakContinueIf(MacroNode $node, PhpWriter $writer)

{breakIf ...} {continueIf ...} {skipIf ...}

string
macroClass(MacroNode $node, PhpWriter $writer)

n:class="..."

string
macroAttr(MacroNode $node, PhpWriter $writer)

n:attr="..."

void
macroTag(MacroNode $node, PhpWriter $writer)

n:tag="..."

void
macroTagEnd(MacroNode $node, PhpWriter $writer)

n:tag="..."

string
macroDump(MacroNode $node, PhpWriter $writer)

{dump ...}

string
macroDebugbreak(MacroNode $node, PhpWriter $writer)

{debugbreak ...}

string
macroCase(MacroNode $node, PhpWriter $writer)

{case ...}

string
macroVar(MacroNode $node, PhpWriter $writer)

{var ...} {default ...} {default} in {switch}

string
macroExpr(MacroNode $node, PhpWriter $writer)

{= ...} {php ...} {do ...}

string
macroContentType(MacroNode $node, PhpWriter $writer)

{contentType ...}

void
macroParameters(MacroNode $node, PhpWriter $writer)

{parameters type $var, ...}

void
macroVarType(MacroNode $node)

{varType type $var}

string
macroVarPrint(MacroNode $node)

{varPrint [all]}

void
macroTemplateType(MacroNode $node)

{templateType ClassName}

void
macroTemplatePrint(MacroNode $node)

{templatePrint [ClassName]}

Details

at line 36
static void install(Compiler $compiler)

No description

Parameters

Compiler $compiler

Return Value

void

at line 100
void initialize()

Initializes before template parsing.

Return Value

void

at line 110
finalize()

Finishes template parsing.

at line 136
string macroIf(MacroNode $node, PhpWriter $writer)

{if ...}

Parameters

MacroNode $node
PhpWriter $writer

Return Value

string

at line 161
string macroEndIf(MacroNode $node, PhpWriter $writer)

{/if ...}

Parameters

MacroNode $node
PhpWriter $writer

Return Value

string

at line 193
string macroElse(MacroNode $node, PhpWriter $writer)

{else}

Parameters

MacroNode $node
PhpWriter $writer

Return Value

string

at line 232
string macroElseIf(MacroNode $node, PhpWriter $writer)

{elseif} {elseifset}

Parameters

MacroNode $node
PhpWriter $writer

Return Value

string

at line 248
void macroIfContent(MacroNode $node, PhpWriter $writer)

n:ifcontent

Parameters

MacroNode $node
PhpWriter $writer

Return Value

void

at line 261
void macroEndIfContent(MacroNode $node, PhpWriter $writer)

n:ifcontent

Parameters

MacroNode $node
PhpWriter $writer

Return Value

void

at line 275
void macroIfChanged(MacroNode $node, PhpWriter $writer)

{ifchanged [...]}

Parameters

MacroNode $node
PhpWriter $writer

Return Value

void

at line 296
void macroTry(MacroNode $node, PhpWriter $writer)

{try}

Parameters

MacroNode $node
PhpWriter $writer

Return Value

void

at line 322
string macroRollback(MacroNode $node, PhpWriter $writer)

{rollback}

Parameters

MacroNode $node
PhpWriter $writer

Return Value

string

at line 338
string macroTranslate(MacroNode $node, PhpWriter $writer)

{_$var |modifiers}

Parameters

MacroNode $node
PhpWriter $writer

Return Value

string

at line 373
string macroInclude(MacroNode $node, PhpWriter $writer)

{include [file] "file" [with blocks] [,] [params]}

Parameters

MacroNode $node
PhpWriter $writer

Return Value

string

at line 403
string macroSandbox(MacroNode $node, PhpWriter $writer)

{sandbox "file" [,] [params]}

Parameters

MacroNode $node
PhpWriter $writer

Return Value

string

at line 422
string macroCapture(MacroNode $node, PhpWriter $writer)

{capture $variable}

Parameters

MacroNode $node
PhpWriter $writer

Return Value

string

at line 440
string macroCaptureEnd(MacroNode $node, PhpWriter $writer)

{/capture}

Parameters

MacroNode $node
PhpWriter $writer

Return Value

string

at line 460
void macroSpaceless(MacroNode $node, PhpWriter $writer)

{spaceless} ... {/spaceless}

Parameters

MacroNode $node
PhpWriter $writer

Return Value

void

at line 473
string macroWhile(MacroNode $node, PhpWriter $writer)

{while ...}

Parameters

MacroNode $node
PhpWriter $writer

Return Value

string

at line 487
string macroEndWhile(MacroNode $node, PhpWriter $writer)

{/while ...}

Parameters

MacroNode $node
PhpWriter $writer

Return Value

string

at line 501
void macroEndForeach(MacroNode $node, PhpWriter $writer)

{foreach ...}

Parameters

MacroNode $node
PhpWriter $writer

Return Value

void

at line 536
void macroIterateWhile(MacroNode $node, PhpWriter $writer)

{iterateWhile ...}

Parameters

MacroNode $node
PhpWriter $writer

Return Value

void

at line 549
void macroEndIterateWhile(MacroNode $node, PhpWriter $writer)

{/iterateWhile ...}

Parameters

MacroNode $node
PhpWriter $writer

Return Value

void

at line 576
string macroBreakContinueIf(MacroNode $node, PhpWriter $writer)

{breakIf ...} {continueIf ...} {skipIf ...}

Parameters

MacroNode $node
PhpWriter $writer

Return Value

string

at line 603
string macroClass(MacroNode $node, PhpWriter $writer)

n:class="..."

Parameters

MacroNode $node
PhpWriter $writer

Return Value

string

at line 617
string macroAttr(MacroNode $node, PhpWriter $writer)

n:attr="..."

Parameters

MacroNode $node
PhpWriter $writer

Return Value

string

at line 627
void macroTag(MacroNode $node, PhpWriter $writer)

n:tag="..."

Parameters

MacroNode $node
PhpWriter $writer

Return Value

void

at line 643
void macroTagEnd(MacroNode $node, PhpWriter $writer)

n:tag="..."

Parameters

MacroNode $node
PhpWriter $writer

Return Value

void

at line 669
string macroDump(MacroNode $node, PhpWriter $writer)

{dump ...}

Parameters

MacroNode $node
PhpWriter $writer

Return Value

string

at line 683
string macroDebugbreak(MacroNode $node, PhpWriter $writer)

{debugbreak ...}

Parameters

MacroNode $node
PhpWriter $writer

Return Value

string

at line 697
string macroCase(MacroNode $node, PhpWriter $writer)

{case ...}

Parameters

MacroNode $node
PhpWriter $writer

Return Value

string

at line 713
string macroVar(MacroNode $node, PhpWriter $writer)

{var ...} {default ...} {default} in {switch}

Parameters

MacroNode $node
PhpWriter $writer

Return Value

string

at line 804
string macroExpr(MacroNode $node, PhpWriter $writer)

{= ...} {php ...} {do ...}

Parameters

MacroNode $node
PhpWriter $writer

Return Value

string

at line 818
string macroContentType(MacroNode $node, PhpWriter $writer)

{contentType ...}

Parameters

MacroNode $node
PhpWriter $writer

Return Value

string

at line 861
void macroParameters(MacroNode $node, PhpWriter $writer)

{parameters type $var, ...}

Parameters

MacroNode $node
PhpWriter $writer

Return Value

void

at line 904
void macroVarType(MacroNode $node)

{varType type $var}

Parameters

MacroNode $node

Return Value

void

at line 924
string macroVarPrint(MacroNode $node)

{varPrint [all]}

Parameters

MacroNode $node

Return Value

string

at line 936
void macroTemplateType(MacroNode $node)

{templateType ClassName}

Parameters

MacroNode $node

Return Value

void

at line 949
void macroTemplatePrint(MacroNode $node)

{templatePrint [ClassName]}

Parameters

MacroNode $node

Return Value

void