Join subtemplatesOften we need to join some subtemplates in one html code with some clue. E.g. list of categories under thumb, related galleries list under video etc
Use this command for join
<?=Inxy::join($items, $template, $clue[, $name = 'item'])?>
This command can be used anywere including subtemplate ExamplesOutput thumb's tagsMain template:
<?=Inxy::join($thumb->tags, 'tags_no_ref', ',')?>
sub/tags_no_ref.php:
Related galleriesMain template:
<?=Inxy::join($gal->related(10), 'related', '')?>
sub/related.php:
|