Renari
Member
For example:
Using {$template_a} in template_b will output the HTML from template_a as if it were run through htmlentities, is there a proper way to do this?
PHP:
$template_a = $template->create('template_a');
$hookParams['template_a'] = $template_a;
$params = $template->getParams();
$params += $hookParams;
$contents .= $template->create('template_b', $params);
Using {$template_a} in template_b will output the HTML from template_a as if it were run through htmlentities, is there a proper way to do this?