raelgc / template

PHP Template
http://raelcunha.com/template.php
GNU Lesser General Public License v2.1
73 stars 42 forks source link

Mapblock improvement (#48) #50

Open raelgc opened 3 years ago

raelgc commented 3 years ago

Fixes #48.

Usage example:

$tpl->mapBlock('BLOCK_USERS', 'USER', $users); 

is same as:

foreach($users as $u) {
    $tpl->USER = $u;
    $tpl->block('BLOCK_USERS');
}

Still missing a mention on README.