[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 源代码 tell_a_friend.php

Zen Cart 源代码 tell_a_friend.php




下载文件

文件名: tell_a_friend.php
文件类型: PHP文件
文件大小: 3.09 KiB
MD5: 9b5ec0cb202af48618c9a386797a8a30

tell_a_friend.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: tell_a_friend.php 290 2004-09-15 19:48:26Z wilt $
  23. //
  24.  
  25. define('NAVBAR_TITLE', '推荐给朋友');
  26.  
  27. define('HEADING_TITLE', '向朋友介绍 \'%s\'');
  28.  
  29. define('FORM_TITLE_CUSTOMER_DETAILS', '您的资料');
  30. define('FORM_TITLE_FRIEND_DETAILS', '您朋友的资料');
  31. define('FORM_TITLE_FRIEND_MESSAGE', '您的留言');
  32.  
  33. define('FORM_FIELD_CUSTOMER_NAME', '您的姓名:');
  34. define('FORM_FIELD_CUSTOMER_EMAIL', '您的电子邮件:');
  35. define('FORM_FIELD_FRIEND_NAME', '朋友的姓名:');
  36. define('FORM_FIELD_FRIEND_EMAIL', '朋友的电子邮件:');
  37.  
  38. define('EMAIL_SEPARATOR', '----------------------------------------------------------------------------------------');
  39.  
  40. define('TEXT_EMAIL_SUCCESSFUL_SENT', '您的<strong>%s</strong>电子邮件已经成功发送到<strong>%s</strong>。');
  41.  
  42. define('EMAIL_TEXT_HEADER','重要通知!');
  43.  
  44. define('EMAIL_TEXT_SUBJECT', '您的朋友%s向您介绍%s的一件商品' );
  45. define('EMAIL_TEXT_GREET', '您好,%s!' . "\n\n");
  46. define('EMAIL_TEXT_INTRO', '您的朋友%s,觉得您也许有兴趣看看%s,来自%s。');
  47.  
  48. define('EMAIL_TELL_A_FRIEND_MESSAGE','%s发了消息:');
  49.  
  50. define('EMAIL_TEXT_LINK', '要查看该商品, 点击下面的连接或者复制和粘贴链接到浏览器:' . "\n\n" . '%s');
  51. define('EMAIL_TEXT_SIGNATURE', '谢谢,' . "\n\n" . '%s');
  52.  
  53. define('ERROR_TO_NAME', '错误: 您朋友的姓名不能为空。');
  54. define('ERROR_TO_ADDRESS', '错误: 您朋友的电子邮件地址不对,请再输入一次。');
  55. define('ERROR_FROM_NAME', '错误: 您的姓名不能为空。');
  56. define('ERROR_FROM_ADDRESS', '错误: 您的电子邮件地址不对,请再输入一次。');
  57. ?>
  58.  


cron