????
| Current Path : /home2/morganrand/www/ecommerce/os/catalog/includes/ |
| Current File : /home2/morganrand/www/ecommerce/os/catalog/includes/column_left.php |
<?php
/*
$Id: column_left.php,v 1.2 2004/08/25 22:40:02 akhan Exp $
osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com
Copyright (c) 2003 osCommerce
Released under the GNU General Public License
*/
if (SHOW_CATALOG_LC == 'true') {
if ((USE_CACHE == 'true') && empty($SID)) {
echo tep_cache_categories_box();
} else {
include(DIR_WS_BOXES . 'categories.php');
}
}
if (SHOW_MANUFACTURER_LC == 'true') {
if ((USE_CACHE == 'true') && empty($SID)) {
echo tep_cache_manufacturers_box();
} else {
include(DIR_WS_BOXES . 'manufacturers.php');
}
}
if (SHOW_NEW_PRODUCTS_LC == 'true') {
require(DIR_WS_BOXES . 'whats_new.php');
}
if (SHOW_SEARCH_LC == 'true') {
require(DIR_WS_BOXES . 'search.php');
}
if (SHOW_INFO_LC == 'true') {
require(DIR_WS_BOXES . 'information.php');
}
?>