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

Zen Cart 源代码 meta_tags.php




下载文件

文件名: meta_tags.php
文件类型: PHP文件
文件大小: 2.99 KiB
MD5: 66ce0845dad7ceccb017a0893e9a6512

meta_tags.php - 关闭高亮
  1. <?php
  2. /**
  3.  * @package languageDefines
  4.  * @copyright Copyright 2003-2008 Zen Cart Development Team
  5.  * @copyright Portions Copyright 2003 osCommerce
  6.  * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
  7.  * @version $Id: meta_tags.php 10330 2008-10-10 20:14:32Z drbyte $
  8.  * Simplified Chinese version   http://www.zen-cart.cn
  9.  */
  10.  
  11. // page title
  12. define('TITLE', 'Zen Cart 中文版');
  13.  
  14. // Site Tagline
  15. define('SITE_TAGLINE', '电子商务的艺术');
  16.  
  17. // Custom Keywords
  18. define('CUSTOM_KEYWORDS', '电子商务, 开源系统, 网上商店, 在线购物');
  19.  
  20. // Home Page Only:
  21.   define('HOME_PAGE_META_DESCRIPTION', '');
  22.   define('HOME_PAGE_META_KEYWORDS', '');
  23.  
  24.   // NOTE: If HOME_PAGE_TITLE is left blank (default) then TITLE and SITE_TAGLINE will be used instead.
  25.   define('HOME_PAGE_TITLE', ''); // usually best left blank
  26.  
  27. // 简易页面关键字。在下面可以设置简易页面的关键字,用简易页面的ID替换下面的 #
  28. // 如果想用缺省的,就不用设置
  29. // (例如: 最好不要设置标题标签,就会使用全站的缺省值)
  30. // 可以按同样的模式重复
  31.   define('META_TAG_DESCRIPTION_EZPAGE_#','');
  32.   define('META_TAG_KEYWORDS_EZPAGE_#','');
  33.   define('META_TAG_TITLE_EZPAGE_#', '');
  34.  
  35. // 基于页面的关键字。按照下面的格式设置独立页面的关键字,主要是针对附加页面。
  36. // 用需要定义页面中 main_page= 后面的大小字母替换 "page_name",例如 ABOUT_US 或 SHIPPINGINFO 等。
  37. // 可以按同样的模式重复
  38.   define('META_TAG_DESCRIPTION_page_name','');
  39.   define('META_TAG_KEYWORDS_page_name','');
  40.   define('META_TAG_TITLE_page_name', '');
  41.  
  42. // Review Page can have a lead in:
  43.   define('META_TAGS_REVIEW', '评论: ');
  44.  
  45. // separators for meta tag definitions
  46. // Define Primary Section Output
  47.   define('PRIMARY_SECTION', ' : ');
  48.  
  49. // Define Secondary Section Output
  50.   define('SECONDARY_SECTION', ' - ');
  51.  
  52. // Define Tertiary Section Output
  53.   define('TERTIARY_SECTION', ', ');
  54.  
  55. // Define divider ... usually just a space or a comma plus a space
  56.   define('METATAGS_DIVIDER', ' ');
  57.  
  58. // Define which pages to tell robots/spiders not to index
  59. // This is generally used for account-management pages or typical SSL pages, and usually doesn't need to be touched.
  60.   define('ROBOTS_PAGES_TO_SKIP','login,logoff,create_account,account,account_edit,account_history,account_history_info,account_newsletters,account_notifications,account_password,address_book,advanced_search,advanced_search_result,checkout_success,checkout_process,checkout_shipping,checkout_payment,checkout_confirmation,cookie_usage,create_account_success,contact_us,download,download_timeout,customers_authorization,down_for_maintenance,password_forgotten,time_out,unsubscribe,info_shopping_cart,popup_image,popup_image_additional,product_reviews_write,ssl_check');
  61.  
  62.  
  63. // favicon setting
  64. // There is usually NO need to enable this unless you need to specify a path and/or a different filename
  65. //  define('FAVICON','favicon.ico');
  66.  
  67. ?>