account_history.php

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

PHP
77
字号
<?php/*  $Id: account_history.php 1498 2007-03-29 14:04:50Z hpdl $  osCommerce, Open Source E-Commerce Solutions  http://www.oscommerce.com  Copyright (c) 2007 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><?php  if (osC_Order::numberOfEntries() > 0) {    $Qhistory = osC_Order::getListing(MAX_DISPLAY_ORDER_HISTORY);    while ($Qhistory->next()) {      if (!osc_empty($Qhistory->value('delivery_name'))) {        $order_type = $osC_Language->get('order_shipped_to');        $order_name = $Qhistory->value('delivery_name');      } else {        $order_type = $osC_Language->get('order_billed_to');        $order_name = $Qhistory->value('billing_name');      }?><div class="moduleBox">  <span style="float: right;"><h6><?php echo $osC_Language->get('order_status') . ' ' . $Qhistory->value('orders_status_name'); ?></h6></span>  <h6><?php echo $osC_Language->get('order_number') . ' ' . $Qhistory->valueInt('orders_id'); ?></h6>  <div class="content">    <table border="0" width="100%" cellspacing="2" cellpadding="4">      <tr>        <td width="50%" valign="top"><?php echo '<b>' . $osC_Language->get('order_date') . '</b> ' . osC_DateTime::getLong($Qhistory->value('date_purchased')) . '<br /><b>' . $order_type . '</b> ' . osc_output_string_protected($order_name); ?></td>        <td width="30%" valign="top"><?php echo '<b>' . $osC_Language->get('order_products') . '</b> ' . osC_Order::numberOfProducts($Qhistory->valueInt('orders_id')) . '<br /><b>' . $osC_Language->get('order_cost') . '</b> ' . strip_tags($Qhistory->value('order_total')); ?></td>        <td width="20%"><?php echo osc_link_object(osc_href_link(FILENAME_ACCOUNT, 'orders=' . $Qhistory->valueInt('orders_id') . (isset($_GET['page']) ? '&page=' . $_GET['page'] : ''), 'SSL'), osc_draw_image_button('small_view.gif', $osC_Language->get('button_view'))); ?></td>      </tr>    </table>  </div></div><?php    }?><div class="listingPageLinks">  <span style="float: right;"><?php echo $Qhistory->getBatchPageLinks(); ?></span>  <?php echo $Qhistory->getBatchTotalPages($osC_Language->get('result_set_number_of_orders')); ?></div><?php  } else {?><div class="moduleBox">  <div class="content">    <?php echo $osC_Language->get('no_orders_made_yet'); ?>  </div></div><?php  }?><div class="submitFormButtons">  <?php echo osc_link_object(osc_href_link(FILENAME_ACCOUNT, null, 'SSL'), osc_draw_image_button('button_back.gif', $osC_Language->get('button_back'))); ?></div>

⌨️ 快捷键说明

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