run-once

Summary

Assures that a block of template code is run only once within a page view.

Usage

{run-once}
    ...
{/run-once}

Description

This function makes sure that a block of template code is processed only once within a page view. It is typically useful when it comes to displaying elements that should appear once or to do timeconsuming calculations that only has to be processed once (and the result is included in multiple templates).

Examples

Example 1

{def $elements=array( 'A', 'B', 'C' )}
 
{foreach $elements as $element}
 
    {run-once}
        Hello world <br/>
    {/run-once}
 
    {$element} <br />
 
{/foreach}

The following output will be produced:

Hello World
A
B
C

Powered by eZ Publish™ CMS Open Source Web Content Management. Copyright © 1999-2013 eZ Systems AS (except where otherwise noted). All rights reserved.