[phpBB Debug] PHP Warning: in file [ROOT]/includes/crs/crs_misc_functions.php on line 37: mime_content_type(): Empty filename or path
[phpBB Debug] PHP Warning: in file [ROOT]/includes/crs/crs_misc_functions.php on line 37: mime_content_type(): Empty filename or path
Zen Cart 源代码 checkout_process.php

Zen Cart 源代码 checkout_process.php




下载文件

文件名: checkout_process.php
文件类型: PHP文件
文件大小: 2.7 KiB
MD5: ea913458e94b4eafec02c42685d1c630

checkout_process.php - 关闭高亮
  1. <?php
  2. //
  3. // +----------------------------------------------------------------------+
  4. // |zen-cart Open Source E-commerce                                       |
  5. // +----------------------------------------------------------------------+
  6. // | Copyright (c) 2003 The zen-cart developers                           |
  7. // |                                                                      |
  8. // | http://www.zen-cart.com/index.php                                    |
  9. // |                                                                      |
  10. // | Portions Copyright (c) 2003 osCommerce                               |
  11. // +----------------------------------------------------------------------+
  12. // | This source file is subject to version 2.0 of the GPL license,       |
  13. // | that is bundled with this package in the file LICENSE, and is        |
  14. // | available through the world-wide-web at the following url:           |
  15. // | http://www.zen-cart.com/license/2_0.txt.                             |
  16. // | If you did not receive a copy of the zen-cart license and are unable |
  17. // | to obtain it through the world-wide-web, please send a note to       |
  18. // | license@zen-cart.com so we can mail you a copy immediately.          |
  19. // +----------------------------------------------------------------------+
  20. // | Simplified Chinese version   http://www.zen-cart.cn                  |
  21. // +----------------------------------------------------------------------+
  22. // $Id: checkout_process.php 896 2005-01-07 18:54:48Z ajeh $
  23. //
  24.  
  25. define('EMAIL_TEXT_SUBJECT', '订单确认');
  26. define('EMAIL_TEXT_HEADER', '订单确认');
  27. define('EMAIL_TEXT_FROM','来自: ');  //added to the EMAIL_TEXT_HEADER, above on text-only emails
  28. define('EMAIL_THANKS_FOR_SHOPPING','谢谢您在我店购物!');
  29. define('EMAIL_DETAILS_FOLLOW','下面是您的订单的详细信息.');
  30. define('EMAIL_TEXT_ORDER_NUMBER', '订单号:');
  31. define('EMAIL_TEXT_INVOICE_URL', '详细发票:');
  32. define('EMAIL_TEXT_INVOICE_URL_CLICK', '详细发票请点击这里');
  33. define('EMAIL_TEXT_DATE_ORDERED', '订单日期:');
  34. define('EMAIL_TEXT_PRODUCTS', '商品');
  35. define('EMAIL_TEXT_SUBTOTAL', '小计:');
  36. define('EMAIL_TEXT_TAX', '税:        ');
  37. define('EMAIL_TEXT_SHIPPING', '运费: ');
  38. define('EMAIL_TEXT_TOTAL', '总额:    ');
  39. define('EMAIL_TEXT_DELIVERY_ADDRESS', '送货地址');
  40. define('EMAIL_TEXT_BILLING_ADDRESS', '帐单地址');
  41. define('EMAIL_TEXT_PAYMENT_METHOD', '支付方式');
  42.  
  43. define('EMAIL_SEPARATOR', '------------------------------------------------------');
  44. define('TEXT_EMAIL_VIA', '通过');
  45.  
  46. define('EMAIL_ORDER_NUMBER_SUBJECT', ' 编号');
  47. define('HEADING_ADDRESS_INFORMATION','地址信息');
  48. define('HEADING_SHIPPING_METHOD','配送方式');
  49. ?>


cron