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

12 years ago
  1. <?php
  2. print '<td>';
  3. $_CONTROL->lblProductName->Render();
  4. print '</td><td>';
  5. $_CONTROL->lblItemPrice->Render();
  6. print '</td><td>';
  7. if( $_CONTROL->Modifiable )
  8. $_CONTROL->txtQuantity->RenderWithError();
  9. else
  10. $_CONTROL->lblQuantity->Render();
  11. print '</td><td>';
  12. $_CONTROL->lblTotalPrice->Render();
  13. print '</td>';
  14. ?>