final class CacheMacro implements IMacro

Macro {cache} ... {/cache} for Latte v2

Methods

void
initialize()

Initializes before template parsing.

finalize()

Finishes template parsing.

bool
nodeOpened(MacroNode $node)

New node is found.

void
nodeClosed(MacroNode $node)

Node is closed.

static void
initRuntime(Template $template)

No description

createCache(Storage $cacheStorage, string $key, array|null $parents, array|null $args = null)

Starts the output cache. Returns Nette\Caching\OutputHelper object if buffering was started.

static void
endCache(array $parents, array|null $args = null)

Ends the output cache.

static void
rollback(array $parents)

No description

Details

at line 32
void initialize()

Initializes before template parsing.

Return Value

void

at line 42
finalize()

Finishes template parsing.

at line 54
bool nodeOpened(MacroNode $node)

New node is found.

Parameters

MacroNode $node

Return Value

bool

at line 75
void nodeClosed(MacroNode $node)

Node is closed.

Parameters

MacroNode $node

Return Value

void

at line 92
static void initRuntime(Template $template)

No description

Parameters

Template $template

Return Value

void

at line 107
static OutputHelper|stdClass createCache(Storage $cacheStorage, string $key, array|null $parents, array|null $args = null)

Starts the output cache. Returns Nette\Caching\OutputHelper object if buffering was started.

Parameters

Storage $cacheStorage
string $key
array|null $parents
array|null $args

Return Value

OutputHelper|stdClass

at line 138
static void endCache(array $parents, array|null $args = null)

Ends the output cache.

Parameters

array $parents
array|null $args

Return Value

void

at line 162
static void rollback(array $parents)

No description

Parameters

array $parents

Return Value

void

Traits

SmartObject