Show
Ignore:
Timestamp:
01/16/08 17:27:18 (11 months ago)
Author:
gerd
Message:

Allow placeholders in LOOP attribute

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/examples/example_attributes_loop.php

    r453 r467  
    3535    $heroes = array( 'Superman', 'Batman', 'Green Lantern', 'Robin', 'Wonder Woman', 'Powergirl' ); 
    3636    $tmpl->addVar( 'row', 'hero', $heroes ); 
     37 
     38    $tmpl->addVar( 'list', 'hero', $heroes ); 
     39    $tmpl->addVar( 'list', 'rows', 8 ); 
    3740     
     41    $tmpl->addVar( 'list2', 'hero', $heroes ); 
     42    $tmpl->addGlobalVar( 'global_rows', 19 ); 
    3843    $tmpl->displayParsedTemplate(); 
    3944?>