Friday 30 November 2007 4:18:04 am
Hi Christian, At some point the customerorderview.tpl gets feeded by the corresponding PHP module, via the following code:
$Email = urldecode( $Email );
$productList =& eZOrder::productList( $CustomerID, $Email );
$orderList =& eZOrder::orderList( $CustomerID, $Email );
$tpl->setVariable( "product_list", $productList );
$tpl->setVariable( "order_list", $orderList );
I guess you will have to look at your php module that instantiates you template, and do something similar there. Hope this helps, </Pascal>
|