A Qcodo based CMS/ecommerce framework
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

17 lines
420 B

<?php
print '<td>';
$_CONTROL->lblProductName->Render();
print '</td><td>';
$_CONTROL->lblItemPrice->Render();
print '</td><td>';
if( $_CONTROL->Modifiable )
$_CONTROL->txtQuantity->RenderWithError();
else
$_CONTROL->lblQuantity->Render();
print '</td><td>';
$_CONTROL->lblTotalPrice->Render();
print '</td>';
?>