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.

26 lines
1.1 KiB

12 years ago
  1. <div id="ShippingModule">
  2. <?php if($_CONTROL->HasActiveMethods)
  3. {
  4. print '<div class="heading">' . Quasi::Translate('Shipping Address') . ': </div>';
  5. $_CONTROL->objAddressSelectionModule->Render();
  6. print '<div class="heading">' . Quasi::Translate('Shipping Options') . ': </div>';
  7. if( is_array($_CONTROL->aryShippingProviders ) )
  8. foreach($_CONTROL->aryShippingProviders as $strTitle => $aryShippingMethodViews)
  9. {
  10. print '<div class="ShippingProviderTitle">' . $strTitle . "</div>\n";
  11. foreach($aryShippingMethodViews as $objShippingMethodView)
  12. $objShippingMethodView->Render();
  13. print '<div class="spacer"></div>';
  14. }
  15. }
  16. print '<hr>';
  17. print '<div class="heading">' . Quasi::Translate('Add comments about your order') . ': </div>';
  18. $_CONTROL->txtNotes->Render();
  19. ?>
  20. </div>