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)

{spaceless} ... {/spaceless}

string
macroWhile(MacroNode $node, PhpWriter $writer)

{while ...}

string
macroEndWhile(MacroNode $node, PhpWriter $writer)

{/while ...}

void
macroEndForeach(MacroNode $node, PhpWriter $writer)

{foreach ...}

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="..."

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 97
void initialize()

Initializes before template parsing.

Return Value

void

at line 107
finalize()

Finishes template parsing.

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

{if ...}

Parameters

MacroNode $node
PhpWriter $writer

Return Value

string

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

{/if ...}

Parameters

MacroNode $node
PhpWriter $writer

Return Value

string

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

{else}

Parameters

MacroNode $node
PhpWriter $writer

Return Value

string

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

{elseif} {elseifset}

Parameters

MacroNode $node
PhpWriter $writer

Return Value

string

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

n:ifcontent

Parameters

MacroNode $node
PhpWriter $writer

Return Value

void

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

n:ifcontent

Parameters

MacroNode $node
PhpWriter $writer

Return Value

void

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

{ifchanged [...]}

Parameters

MacroNode $node
PhpWriter $writer

Return Value

void

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

{try}

Parameters

MacroNode $node
PhpWriter $writer

Return Value

void

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

{rollback}

Parameters

MacroNode $node
PhpWriter $writer

Return Value

string

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

{_$var |modifiers}

Parameters

MacroNode $node
PhpWriter $writer

Return Value

string

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

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

Parameters

MacroNode $node
PhpWriter $writer

Return Value

string

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

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

Parameters

MacroNode $node
PhpWriter $writer

Return Value

string

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

{capture $variable}

Parameters

MacroNode $node
PhpWriter $writer

Return Value

string

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

{/capture}

Parameters

MacroNode $node
PhpWriter $writer

Return Value

string

at line 432
void macroSpaceless(MacroNode $node)

{spaceless} ... {/spaceless}

Parameters

MacroNode $node

Return Value

void

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

{while ...}

Parameters

MacroNode $node
PhpWriter $writer

Return Value

string

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

{/while ...}

Parameters

MacroNode $node
PhpWriter $writer

Return Value

string

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

{foreach ...}

Parameters

MacroNode $node
PhpWriter $writer

Return Value

void

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

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

Parameters

MacroNode $node
PhpWriter $writer

Return Value

string

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

n:class="..."

Parameters

MacroNode $node
PhpWriter $writer

Return Value

string

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

n:attr="..."

Parameters

MacroNode $node
PhpWriter $writer

Return Value

string

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

{dump ...}

Parameters

MacroNode $node
PhpWriter $writer

Return Value

string

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

{debugbreak ...}

Parameters

MacroNode $node
PhpWriter $writer

Return Value

string

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

{case ...}

Parameters

MacroNode $node
PhpWriter $writer

Return Value

string

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

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

Parameters

MacroNode $node
PhpWriter $writer

Return Value

string

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

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

Parameters

MacroNode $node
PhpWriter $writer

Return Value

string

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

{contentType ...}

Parameters

MacroNode $node
PhpWriter $writer

Return Value

string

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

{parameters type $var, ...}

Parameters

MacroNode $node
PhpWriter $writer

Return Value

void

at line 793
void macroVarType(MacroNode $node)

{varType type $var}

Parameters

MacroNode $node

Return Value

void

at line 813
string macroVarPrint(MacroNode $node)

{varPrint [all]}

Parameters

MacroNode $node

Return Value

string

at line 825
void macroTemplateType(MacroNode $node)

{templateType ClassName}

Parameters

MacroNode $node

Return Value

void

at line 838
void macroTemplatePrint(MacroNode $node)

{templatePrint [ClassName]}

Parameters

MacroNode $node

Return Value

void