|
ZenCart_Documentation
1.5.0
http://www.collinsharper.com
|
00001 <?php 00002 // 00003 // +----------------------------------------------------------------------+ 00004 // |zen-cart Open Source E-commerce | 00005 // +----------------------------------------------------------------------+ 00006 // | Copyright (c) 2003 The zen-cart developers | 00007 // | | 00008 // | http://www.zen-cart.com/index.php | 00009 // | | 00010 // | Portions Copyright (c) 2003 osCommerce | 00011 // +----------------------------------------------------------------------+ 00012 // | This source file is subject to version 2.0 of the GPL license, | 00013 // | that is bundled with this package in the file LICENSE, and is | 00014 // | available through the world-wide-web at the following url: | 00015 // | http://www.zen-cart.com/license/2_0.txt. | 00016 // | If you did not receive a copy of the zen-cart license and are unable | 00017 // | to obtain it through the world-wide-web, please send a note to | 00018 // | [email protected] so we can mail you a copy immediately. | 00019 // +----------------------------------------------------------------------+ 00020 // $Id: layout_controller.php 3197 2006-03-17 21:40:58Z drbyte $ 00021 // 00022 00023 define('HEADING_TITLE', 'Column Boxes'); 00024 00025 define('TABLE_HEADING_LAYOUT_BOX_NAME', 'Box File Name'); 00026 define('TABLE_HEADING_LAYOUT_BOX_STATUS', 'LEFT/RIGHT COLUMN<br />Status'); 00027 define('TABLE_HEADING_LAYOUT_BOX_STATUS_SINGLE', 'SINGLE COLUMN<br />Status'); 00028 define('TABLE_HEADING_LAYOUT_BOX_LOCATION', 'LEFT or RIGHT<br />COLUMN'); 00029 define('TABLE_HEADING_LAYOUT_BOX_SORT_ORDER', 'LEFT/RIGHT COLUMN<br />Sort Order'); 00030 define('TABLE_HEADING_LAYOUT_BOX_SORT_ORDER_SINGLE', 'SINGLE COLUMN<br />Sort Order'); 00031 define('TABLE_HEADING_ACTION', 'Action'); 00032 00033 define('TEXT_INFO_EDIT_INTRO', 'Please make any necessary changes'); 00034 define('TEXT_INFO_LAYOUT_BOX','Selected Box: '); 00035 define('TEXT_INFO_LAYOUT_BOX_NAME', 'Box Name:'); 00036 define('TEXT_INFO_LAYOUT_BOX_LOCATION','Location: (Single Column ignores this setting)'); 00037 define('TEXT_INFO_LAYOUT_BOX_STATUS', 'Left/Right Column Status: '); 00038 define('TEXT_INFO_LAYOUT_BOX_STATUS_SINGLE', 'Single Column Status: '); 00039 define('TEXT_INFO_LAYOUT_BOX_STATUS_INFO','ON= 1 OFF=0'); 00040 define('TEXT_INFO_LAYOUT_BOX_SORT_ORDER', 'Left/Right Column Sort Order:'); 00041 define('TEXT_INFO_LAYOUT_BOX_SORT_ORDER_SINGLE', 'Single Column Sort Order:'); 00042 define('TEXT_INFO_INSERT_INTRO', 'Please enter the new box with its related data'); 00043 define('TEXT_INFO_DELETE_INTRO', 'Are you sure you want to delete this box?'); 00044 define('TEXT_INFO_HEADING_NEW_BOX', 'New Box'); 00045 define('TEXT_INFO_HEADING_EDIT_BOX', 'Edit Box'); 00046 define('TEXT_INFO_HEADING_DELETE_BOX', 'Delete Box'); 00047 define('TEXT_INFO_DELETE_MISSING_LAYOUT_BOX','Delete missing box from Template listing: '); 00048 define('TEXT_INFO_DELETE_MISSING_LAYOUT_BOX_NOTE','NOTE: This does not remove files and you can re-add the box at anytime by adding it to the correct directory.<br /><br /><strong>Delete box name: </strong>'); 00049 define('TEXT_INFO_RESET_TEMPLATE_SORT_ORDER','Reset All Box Sort Order to match DEFAULT Sort Order for Template: '); 00050 define('TEXT_INFO_RESET_TEMPLATE_SORT_ORDER_NOTE','This does not remove any of the boxes. It will only reset the current sort order'); 00051 define('TEXT_INFO_BOX_DETAILS','Box Details: '); 00052 00054 00055 define('HEADING_TITLE_LAYOUT_TEMPLATE', 'Site Template Layout'); 00056 00057 define('TABLE_HEADING_LAYOUT_TITLE', 'Title'); 00058 define('TABLE_HEADING_LAYOUT_VALUE', 'Value'); 00059 define('TABLE_HEADING_ACTION', 'Action'); 00060 00061 00062 define('TEXT_MODULE_DIRECTORY', 'Site Layout Directory:'); 00063 define('TEXT_INFO_DATE_ADDED', 'Date Added:'); 00064 define('TEXT_INFO_LAST_MODIFIED', 'Last Modified:'); 00065 00066 // layout box text in includes/boxes/layout.php 00067 define('BOX_HEADING_LAYOUT', 'Layout'); 00068 define('BOX_LAYOUT_COLUMNS', 'Column Controller'); 00069 00070 // file exists 00071 define('TEXT_GOOD_BOX',' '); 00072 define('TEXT_BAD_BOX','<font color="ff0000"><b>MISSING</b></font><br />'); 00073 00074 00075 // Success message 00076 define('SUCCESS_BOX_DELETED','Successfully removed from the template of the box: '); 00077 define('SUCCESS_BOX_RESET','Successfully Reset all box settings to the Default settings for Template: '); 00078 define('SUCCESS_BOX_UPDATED','Successfully Updated settings for box: '); 00079 00080 define('TEXT_ON',' ON '); 00081 define('TEXT_OFF',' OFF '); 00082 define('TEXT_LEFT',' LEFT '); 00083 define('TEXT_RIGHT',' RIGHT '); 00084 00085 ?>