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

Zen Cart 源代码 advanced_search_result.php




下载文件

文件名: advanced_search_result.php
文件类型: PHP文件
文件大小: 3.94 KiB
MD5: 9b5f933b72eac1eeff648c50c4b1fbc7

advanced_search_result.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. // $Id: advanced_search_result.php 1969 2005-09-13 06:57:21Z drbyte $
  21. //
  22.  
  23. define('NAVBAR_TITLE_1', 'Advanced Search');
  24. define('NAVBAR_TITLE_2', 'Search Results');
  25.  
  26. //define('HEADING_TITLE_1', 'Advanced Search');
  27. define('HEADING_TITLE', 'Advanced Search');
  28.  
  29. define('HEADING_SEARCH_CRITERIA', 'Search Criteria');
  30.  
  31. define('TEXT_SEARCH_IN_DESCRIPTION', 'Search In Product Descriptions');
  32. define('ENTRY_CATEGORIES', 'Categories:');
  33. define('ENTRY_INCLUDE_SUBCATEGORIES', 'Include Subcategories');
  34. define('ENTRY_MANUFACTURERS', 'Manufacturers:');
  35. define('ENTRY_PRICE_FROM', 'Price From:');
  36. define('ENTRY_PRICE_TO', 'Price To:');
  37. define('ENTRY_DATE_FROM', 'Date From:');
  38. define('ENTRY_DATE_TO', 'Date To:');
  39.  
  40. define('TEXT_SEARCH_HELP_LINK', 'Search Help [?]');
  41.  
  42. define('TEXT_ALL_CATEGORIES', 'All Categories');
  43. define('TEXT_ALL_MANUFACTURERS', 'All Manufacturers');
  44.  
  45. define('HEADING_SEARCH_HELP', 'Search Help');
  46. define('TEXT_SEARCH_HELP', 'Keywords may be separated by AND and/or OR statements for greater control of the search results.<br /><br />For example, Microsoft AND mouse would generate a result set that contain both words. However, for mouse OR keyboard, the result set returned would contain both or either words.<br /><br />Exact matches can be searched for by enclosing keywords in double-quotes.<br /><br />For example, "notebook computer" would generate a result set which match the exact string.<br /><br />Brackets can be used for further control on the result set.<br /><br />For example, Microsoft and (keyboard or mouse or "visual basic").');
  47. define('TEXT_CLOSE_WINDOW', 'Close Window [x]');
  48.  
  49. define('TABLE_HEADING_IMAGE', '');
  50. define('TABLE_HEADING_MODEL', 'Model');
  51. define('TABLE_HEADING_PRODUCTS', 'Product Name');
  52. define('TABLE_HEADING_MANUFACTURER', 'Manufacturer');
  53. define('TABLE_HEADING_QUANTITY', 'Quantity');
  54. define('TABLE_HEADING_PRICE', 'Price');
  55. define('TABLE_HEADING_WEIGHT', 'Weight');
  56. define('TABLE_HEADING_BUY_NOW', 'Buy Now');
  57.  
  58. define('TEXT_NO_PRODUCTS', 'There is no product that matches the search criteria.');
  59.  
  60. define('ERROR_AT_LEAST_ONE_INPUT', 'At least one of the fields in the search form must be entered.');
  61. define('ERROR_INVALID_FROM_DATE', 'Invalid From Date.');
  62. define('ERROR_INVALID_TO_DATE', 'Invalid To Date.');
  63. define('ERROR_TO_DATE_LESS_THAN_FROM_DATE', 'To Date must be greater than or equal to From Date.');
  64. define('ERROR_PRICE_FROM_MUST_BE_NUM', 'Price From must be a number.');
  65. define('ERROR_PRICE_TO_MUST_BE_NUM', 'Price To must be a number.');
  66. define('ERROR_PRICE_TO_LESS_THAN_PRICE_FROM', 'Price To must be greater than or equal to Price From.');
  67. define('ERROR_INVALID_KEYWORDS', 'Invalid keywords.');
  68. ?>
  69.