[ Index ] |
|
Code source de Zen Cart E-Commerce Shopping Cart 1.3.7.1 |
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: banner_manager.php 3131 2006-03-07 22:53:04Z ajeh $ 21 // 22 23 define('HEADING_TITLE', 'Banner Manager'); 24 25 define('TABLE_HEADING_BANNERS', 'Banners'); 26 define('TABLE_HEADING_GROUPS', 'Groups'); 27 define('TABLE_HEADING_STATISTICS', 'Displays / Clicks'); 28 define('TABLE_HEADING_STATUS', 'Status'); 29 define('TABLE_HEADING_BANNER_OPEN_NEW_WINDOWS','New Window'); 30 define('TABLE_HEADING_BANNER_ON_SSL', 'Show SSL'); 31 define('TABLE_HEADING_ACTION', 'Action'); 32 define('TABLE_HEADING_BANNER_SORT_ORDER', 'Sort<br />Order'); 33 34 define('TEXT_BANNERS_TITLE', 'Banner Title:'); 35 define('TEXT_BANNERS_URL', 'Banner URL:'); 36 define('TEXT_BANNERS_GROUP', 'Banner Group:'); 37 define('TEXT_BANNERS_NEW_GROUP', ', or enter a new banner group below'); 38 define('TEXT_BANNERS_IMAGE', 'Image:'); 39 define('TEXT_BANNERS_IMAGE_LOCAL', ', or enter local file below'); 40 define('TEXT_BANNERS_IMAGE_TARGET', 'Image Target (Save To):'); 41 define('TEXT_BANNER_IMAGE_TARGET_INFO', '<strong>Suggested Target location for the image on the server:</strong> ' . DIR_FS_CATALOG_IMAGES . 'banners/'); 42 define('TEXT_BANNERS_HTML_TEXT_INFO', '<strong>NOTE: HTML banners do not record the clicks on the banner</strong>'); 43 define('TEXT_BANNERS_HTML_TEXT', 'HTML Text:'); 44 define('TEXT_BANNERS_ALL_SORT_ORDER', 'Sort Order - banner_box_all'); 45 define('TEXT_BANNERS_ALL_SORT_ORDER_INFO', '<strong>NOTE: The banners_box_all sidebox will display the banners in their defined sort order</strong>'); 46 define('TEXT_BANNERS_EXPIRES_ON', 'Expires On:'); 47 define('TEXT_BANNERS_OR_AT', ', or at'); 48 define('TEXT_BANNERS_IMPRESSIONS', 'impressions/views.'); 49 define('TEXT_BANNERS_SCHEDULED_AT', 'Scheduled At:'); 50 define('TEXT_BANNERS_BANNER_NOTE', '<b>Banner Notes:</b><ul><li>Use an image or HTML text for the banner - not both.</li><li>HTML Text has priority over an image</li><li>HTML Text will not register the click thru, but will register displays</li><li>Banners with absolute image URLs should not be displayed on secure pages</li></ul>'); 51 define('TEXT_BANNERS_INSERT_NOTE', '<b>Image Notes:</b><ul><li>Uploading directories must have proper user (write) permissions setup!</li><li>Do not fill out the \'Save To\' field if you are not uploading an image to the webserver (ie, you are using a local (serverside) image).</li><li>The \'Save To\' field must be an existing directory with an ending slash (eg, banners/).</li></ul>'); 52 define('TEXT_BANNERS_EXPIRCY_NOTE', '<b>Expiry Notes:</b><ul><li>Only one of the two fields should be submitted</li><li>If the banner is not to expire automatically, then leave these fields blank</li></ul>'); 53 define('TEXT_BANNERS_SCHEDULE_NOTE', '<b>Schedule Notes:</b><ul><li>If a schedule is set, the banner will be activated on that date.</li><li>All scheduled banners are marked as inactive until their date has arrived, to which they will then be marked active.</li></ul>'); 54 define('TEXT_BANNERS_STATUS', 'Banner Status:'); 55 define('TEXT_BANNERS_ACTIVE', 'Active'); 56 define('TEXT_BANNERS_NOT_ACTIVE', 'Not Active'); 57 define('TEXT_INFO_BANNER_STATUS', '<strong>NOTE:</strong> Banner status will be updated based on Scheduled Date and Impressions'); 58 define('TEXT_BANNERS_OPEN_NEW_WINDOWS', 'Banner New Window'); 59 define('TEXT_INFO_BANNER_OPEN_NEW_WINDOWS', '<strong>NOTE:</strong> Banner will open in a new window'); 60 define('TEXT_BANNERS_ON_SSL', 'Banner on SSL'); 61 define('TEXT_INFO_BANNER_ON_SSL', '<strong>NOTE:</strong> Banner can be displayed on Secure Pages without errors'); 62 63 define('TEXT_BANNERS_DATE_ADDED', 'Date Added:'); 64 define('TEXT_BANNERS_SCHEDULED_AT_DATE', 'Scheduled At: <b>%s</b>'); 65 define('TEXT_BANNERS_EXPIRES_AT_DATE', 'Expires At: <b>%s</b>'); 66 define('TEXT_BANNERS_EXPIRES_AT_IMPRESSIONS', 'Expires At: <b>%s</b> impressions'); 67 define('TEXT_BANNERS_STATUS_CHANGE', 'Status Change: %s'); 68 69 define('TEXT_BANNERS_DATA', 'D<br>A<br>T<br>A'); 70 define('TEXT_BANNERS_LAST_3_DAYS', 'Last 3 Days'); 71 define('TEXT_BANNERS_BANNER_VIEWS', 'Banner Views'); 72 define('TEXT_BANNERS_BANNER_CLICKS', 'Banner Clicks'); 73 74 define('TEXT_INFO_DELETE_INTRO', 'Are you sure you want to delete this banner?'); 75 define('TEXT_INFO_DELETE_IMAGE', 'Delete banner image'); 76 77 define('SUCCESS_BANNER_INSERTED', 'Success: The banner has been inserted.'); 78 define('SUCCESS_BANNER_UPDATED', 'Success: The banner has been updated.'); 79 define('SUCCESS_BANNER_REMOVED', 'Success: The banner has been removed.'); 80 define('SUCCESS_BANNER_STATUS_UPDATED', 'Success: The status of the banner has been updated.'); 81 82 define('ERROR_BANNER_TITLE_REQUIRED', 'Error: Banner title required.'); 83 define('ERROR_BANNER_GROUP_REQUIRED', 'Error: Banner group required.'); 84 define('ERROR_IMAGE_DIRECTORY_DOES_NOT_EXIST', 'Error: Target directory does not exist: %s'); 85 define('ERROR_IMAGE_DIRECTORY_NOT_WRITEABLE', 'Error: Target directory is not writeable: %s'); 86 define('ERROR_IMAGE_DOES_NOT_EXIST', 'Error: Image does not exist.'); 87 define('ERROR_IMAGE_IS_NOT_WRITEABLE', 'Error: Image can not be removed.'); 88 define('ERROR_UNKNOWN_STATUS_FLAG', 'Error: Unknown status flag.'); 89 define('ERROR_BANNER_IMAGE_REQUIRED', 'Error: Banner image required.'); 90 91 define('ERROR_GRAPHS_DIRECTORY_DOES_NOT_EXIST', 'Error: Graphs directory does not exist. Please create a graphs directory example: <strong>' . DIR_WS_ADMIN . 'images/graphs</strong>'); 92 define('ERROR_GRAPHS_DIRECTORY_NOT_WRITEABLE', 'Error: Graphs directory is not writeable. This is located at: <strong>' . DIR_WS_ADMIN . 'images/graphs</strong>'); 93 94 define('TEXT_LEGEND_BANNER_ON_SSL', 'Show SSL'); 95 define('TEXT_LEGEND_BANNER_OPEN_NEW_WINDOWS', 'New Window'); 96 97 // Tooltip Text for images in Banner Manager 98 define('IMAGE_ICON_BANNER_OPEN_NEW_WINDOWS_ON','Open New Window - Enabled'); 99 define('IMAGE_ICON_BANNER_OPEN_NEW_WINDOWS_OFF','Open New Window - Disabled'); 100 define('IMAGE_ICON_BANNER_ON_SSL_ON','Show on Secure Pages - Enabled'); 101 define('IMAGE_ICON_BANNER_ON_SSL_OFF','Show on Secure Pages - Disabled'); 102 103 define('SUCCESS_BANNER_OPEN_NEW_WINDOW_UPDATED', 'Success: The status of the banner to open in a new window has been updated.'); 104 define('SUCCESS_BANNER_ON_SSL_UPDATED', 'Success: The status of the banner to show on SSL has been updated.'); 105 ?>
titre
Description
Corps
titre
Description
Corps
titre
Description
Corps
titre
Corps
Généré le : Mon Nov 26 16:45:43 2007 | par Balluche grâce à PHPXref 0.7 |
![]() |