template icon indicating copy to clipboard operation
template copied to clipboard

Mapblock improvement (#48)

Open raelgc opened this issue 5 years ago • 0 comments

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.

raelgc avatar Jan 13 '21 21:01 raelgc