checkout_shipping.php

来自「this the oscommerce 3.0 aplha 4」· PHP 代码 · 共 155 行

PHP
155
字号
<?php/*  $Id: checkout_shipping.php 1498 2007-03-29 14:04:50Z hpdl $  osCommerce, Open Source E-Commerce Solutions  http://www.oscommerce.com  Copyright (c) 2006 osCommerce  This program is free software; you can redistribute it and/or modify  it under the terms of the GNU General Public License v2 (1991)  as published by the Free Software Foundation.*/?><?php echo osc_image(DIR_WS_IMAGES . $osC_Template->getPageImage(), $osC_Template->getPageTitle(), HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT, 'id="pageIcon"'); ?><h1><?php echo $osC_Template->getPageTitle(); ?></h1><form name="checkout_address" action="<?php echo osc_href_link(FILENAME_CHECKOUT, 'shipping=process', 'SSL'); ?>" method="post"><div class="moduleBox">  <h6><?php echo $osC_Language->get('shipping_address_title'); ?></h6>  <div class="content">    <div style="float: right; padding: 0px 0px 10px 20px;">      <?php echo osC_Address::format($osC_ShoppingCart->getShippingAddress(), '<br />'); ?>    </div>    <div style="float: right; padding: 0px 0px 10px 20px; text-align: center;">      <?php echo '<b>' . $osC_Language->get('current_shipping_address_title') . '</b><br />' . osc_image(DIR_WS_IMAGES . 'arrow_south_east.gif'); ?>    </div>    <?php echo $osC_Language->get('choose_shipping_destination'). '<br /><br />' . osc_link_object(osc_href_link(FILENAME_CHECKOUT, 'shipping_address', 'SSL'), osc_draw_image_button('button_change_address.gif', $osC_Language->get('button_change_address'))); ?>    <div style="clear: both;"></div>  </div></div><?php  if ($osC_Shipping->hasQuotes()) {?><div class="moduleBox">  <h6><?php echo $osC_Language->get('shipping_method_title'); ?></h6>  <div class="content"><?php    if ($osC_Shipping->numberOfQuotes() > 1) {?>    <div style="float: right; padding: 0px 0px 10px 20px; text-align: center;">      <?php echo '<b>' . $osC_Language->get('please_select') . '</b><br />' . osc_image(DIR_WS_IMAGES . 'arrow_east_south.gif'); ?>    </div>    <p style="margin-top: 0px;"><?php echo $osC_Language->get('choose_shipping_method'); ?></p><?php    } else {?>    <p style="margin-top: 0px;"><?php echo $osC_Language->get('only_one_shipping_method_available'); ?></p><?php    }?>    <table border="0" width="100%" cellspacing="0" cellpadding="2"><?php    $radio_buttons = 0;    foreach ($osC_Shipping->getQuotes() as $quotes) {?>      <tr>        <td><table border="0" width="100%" cellspacing="0" cellpadding="2">          <tr>            <td width="10">&nbsp;</td>            <td colspan="3"><b><?php echo $quotes['module']; ?></b>&nbsp;<?php if (isset($quotes['icon']) && !empty($quotes['icon'])) { echo $quotes['icon']; } ?></td>            <td width="10">&nbsp;</td>          </tr><?php      if (isset($quotes['error'])) {?>          <tr>            <td width="10">&nbsp;</td>            <td colspan="3"><?php echo $quotes['error']; ?></td>            <td width="10">&nbsp;</td>          </tr><?php      } else {        foreach ($quotes['methods'] as $methods) {          if ($quotes['id'] . '_' . $methods['id'] == $osC_ShoppingCart->getShippingMethod('id')) {            echo '          <tr id="defaultSelected" class="moduleRowSelected" onmouseover="rowOverEffect(this)" onmouseout="rowOutEffect(this)" onclick="selectRowEffect(this, ' . $radio_buttons . ')">' . "\n";          } else {            echo '          <tr class="moduleRow" onmouseover="rowOverEffect(this)" onmouseout="rowOutEffect(this)" onclick="selectRowEffect(this, ' . $radio_buttons . ')">' . "\n";          }?>            <td width="10">&nbsp;</td>            <td width="75%"><?php echo $methods['title']; ?></td><?php          if ( ($osC_Shipping->numberOfQuotes() > 1) || (sizeof($quotes['methods']) > 1) ) {?>            <td><?php echo $osC_Currencies->displayPrice($methods['cost'], $quotes['tax_class_id']); ?></td>            <td align="right"><?php echo osc_draw_radio_field('shipping_mod_sel', $quotes['id'] . '_' . $methods['id'], $osC_ShoppingCart->getShippingMethod('id')); ?></td><?php          } else {?>            <td align="right" colspan="2"><?php echo $osC_Currencies->displayPrice($methods['cost'], $quotes['tax_class_id']) . osc_draw_hidden_field('shipping_mod_sel', $quotes['id'] . '_' . $methods['id']); ?></td><?php          }?>            <td width="10">&nbsp;</td>          </tr><?php          $radio_buttons++;        }      }?>        </table></td>      </tr><?php    }?>    </table>  </div></div><?php  }?><div class="moduleBox">  <h6><?php echo $osC_Language->get('add_comment_to_order_title'); ?></h6>  <div class="content">    <?php echo osc_draw_textarea_field('comments', (isset($_SESSION['comments']) ? $_SESSION['comments'] : null), null, null, 'style="width: 98%;"'); ?>  </div></div><br /><div class="moduleBox">  <div class="content">    <div style="float: right;">      <?php echo osc_draw_image_submit_button('button_continue.gif', $osC_Language->get('button_continue')); ?>    </div>    <?php echo '<b>' . $osC_Language->get('continue_checkout_procedure_title') . '</b><br />' . $osC_Language->get('continue_checkout_procedure_to_payment'); ?>  </div></div></form>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?