????
| Current Path : /home2/morganrand/www/store/includes/modules/ |
| Current File : /home2/morganrand/www/store/includes/modules/new_products.php |
<?php
/*
$Id$
osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com
Copyright (c) 2010 osCommerce
Released under the GNU General Public License
*/
/* if ( (!isset($new_products_category_id)) || ($new_products_category_id == '0') ) {
$new_products_query = tep_db_query("select p.products_id, p.products_image, pi.image, p.products_tax_class_id, pd.products_name, if(s.status, s.specials_new_products_price, p.products_price) as products_price from " . TABLE_PRODUCTS . " p left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id, " . TABLE_PRODUCTS_DESCRIPTION . " pd, " . TABLE_PRODUCTS_IMAGES . " pi where p.products_status = '1' and p.products_id = pd.products_id and p.products_id = pi.products_id and pd.language_id = '" . (int)$languages_id . "' order by p.products_date_added desc limit " . MAX_DISPLAY_NEW_PRODUCTS);
} else {
$new_products_query = tep_db_query("select distinct p.products_id, p.products_image, p.products_tax_class_id, pd.products_name, if(s.status, s.specials_new_products_price, p.products_price) as products_price from " . TABLE_PRODUCTS . " p left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id, " . TABLE_PRODUCTS_DESCRIPTION . " pd, " . TABLE_PRODUCTS_TO_CATEGORIES . " p2c, " . TABLE_CATEGORIES . " c where p.products_id = p2c.products_id and p2c.categories_id = c.categories_id and c.parent_id = '" . (int)$new_products_category_id . "' and p.products_status = '1' and p.products_id = pd.products_id and pd.language_id = '" . (int)$languages_id . "' order by p.products_date_added desc limit " . MAX_DISPLAY_NEW_PRODUCTS);
}*/
$new_products_query = tep_db_query("select p.products_id, p.products_image, pi.image, p.products_tax_class_id, pd.products_name, if(s.status, s.specials_new_products_price, p.products_price) as products_price from " . TABLE_PRODUCTS . " p left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id, " . TABLE_PRODUCTS_DESCRIPTION . " pd, " . TABLE_PRODUCTS_IMAGES . " pi where p.products_status = '1' and p.products_id = pd.products_id and p.products_id = pi.products_id and pd.language_id = '" . (int)$languages_id . "' and p.products_model in ('WE04','SW01','LA07','WE01','SC19','LM14','HP02','BD11','CO03')");
$num_new_products = tep_db_num_rows($new_products_query);
if ($num_new_products > 0) {
$counter = 0;
$col = 0;
$new_prods_content = '<table border="0" width="100%" cellspacing="0" cellpadding="2">';
while ($new_products = tep_db_fetch_array($new_products_query)) {
$counter++;
if ($col === 0) {
$new_prods_content .= '<tr>';
}
if ($counter == 4) {
$new_prods_content .= '<td rowspan="2" colspan="2" align="center" valign="top"><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $new_products['products_id']) . '">' . tep_image(DIR_WS_IMAGES . $new_products['image'], $new_products['products_name'], 460, 460) . '</a><br /><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $new_products['products_id']) . '"><p style="float: left; margin-left: 100px; width: 200px;">' . $new_products['products_name'] . '</p><img style="float: right; margin-right: 70px" src="images/buy_button.jpg" width="50" height="25"></a><br /></td>';
$col ++;
} else {
$new_prods_content .= '<td width="33%" align="center" valign="top"><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $new_products['products_id']) . '">' . tep_image(DIR_WS_IMAGES . $new_products['products_image'], $new_products['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT) . '</a><br /><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $new_products['products_id']) . '"><p style="float: left; padding-left: 10px; width: 180px;">' . $new_products['products_name'] . '</p><img style="float: right;" src="images/buy_button.jpg" width="50" height="25"></a><br /></td>';
if ($counter == 6) {
$col=2;
}
}
$col ++;
if (($col > 2) || ($counter == $num_new_products)) {
$new_prods_content .= '</tr>';
$col = 0;
}
}
$new_prods_content .= '</table>';
?>
<div id="tag">Here are some of our customer's favorites</div>
<div class="contentText">
<?php echo $new_prods_content; ?>
</div>
<?php
}
?>