Hi, I need your help.
I need to change the total sum of the page in xxxxx_print.php (report), is not a gobal!
This value is stored in the array $page:
$sum=array("Minutos"=>$pagetotals_sum["Minutos"]);
$page["page_totalMinutos_sum"]=GetData($sum,"Minutos","");
$page is passed to Smarty within another array:
$pages[]=$page;
$smarty->assign("pages",$pages);
I need to change the amount of {$page.page_totalMinutos_sum}
As it is an arrangement within another arrangement, using the methods $smarty->get_template_vars and $smarty->assign, I am not getting.
How to retrieve this information and put back in the arrangement of Smarty, after formatting as I need?
Thanks
Rei