In smarty, I encounter such html code.**
{section name=listAll loop=$scope}
(input id="a1" name="from" / >
(input id="b1" name="from" / >
(input id="c1" name="from" / >
{/section}
{section name=listAll loop=$scope}
(input id="a2" name="from" / >
(input id="b2" name="from" / >
(input id="c2" name="from" / >
{/section}
{section name=listAll loop=$scope}
(input id="a3" name="from" / >
(input id="b3" name="from" / >
(input id="c3" name="from" / >
{/section}
Can I transfer it to a function like following:
function RenderControl($i)
{
return '
{section name=listAll loop=$scope}
(input id="a$i" name="from" / >
(input id="b$i" name="from" / >
(input id="c$i" name="from" / >
{/section}
} ';
Then call it in tpl file like:
{RenderControl i=1}
{RenderControl i=2}
{RenderControl i=3}
why the following cannot work for smarty tpl?$smarty->register_function('RenderHtml','RenderHtml'); function RenderHtml($params){ extract($params); // $html= ' {include file="tke-pre_bid_scopeworkModules/Section1_Factory_to_Price_Optional_Configuration.tpl"} ' ; return $html; }
{RenderHtml num=12}