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

Zen Cart 源代码 icon_names.php




下载文件

文件名: icon_names.php
文件类型: PHP文件
文件大小: 1.06 KiB
MD5: fb9076bd9c98e9041a7f0daf4c89e688

icon_names.php - 关闭高亮
  1. <?php
  2. /**
  3.  * @package languageDefines
  4.  * @copyright Copyright 2003-2006 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: icon_names.php 4224 2006-08-24 01:41:50Z drbyte $
  8.  */
  9.  
  10. // define the icon images used in the project
  11. define('ICON_IMAGE_ERROR', 'error.gif');
  12. define('ICON_IMAGE_WARNING', 'warning.gif');
  13. define('ICON_IMAGE_SUCCESS', 'success.gif');
  14. define('ICON_IMAGE_TRASH', 'small_delete.gif');
  15. define('ICON_IMAGE_UPDATE', 'button_update_cart.gif');
  16. define('ICON_IMAGE_TINYCART', 'cart.gif');
  17.  
  18. //alt tags for buttons
  19. define('ICON_ERROR_ALT', 'Error');
  20. define('ICON_SUCCESS_ALT', 'Success');
  21. define('ICON_WARNING_ALT', 'Warning');
  22. define('ICON_TRASH_ALT', 'Delete this item from the cart by clicking this icon.');
  23. define('ICON_UPDATE_ALT', 'Change your quantity by highlighting the number in the box, correcting the quantity and clicking this button.');
  24. define('ICON_TINYCART_ALT', 'Add this product to your cart by clicking here.');
  25.  
  26. ?>


cron