<?php
/*
$Id: specials.php $
TomatoCart Open Source Shopping Cart Solutions
http://www.tomatocart.com
Copyright (c) 2009 Wuxi Elootec Technology Co., Ltd; Copyright (c) 2007 osCommerce
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License v2 (1991)
as published by the Free Software Foundation.
*/
$Qspecials = osC_Specials::getListing();
?>
<h1><?php echo $osC_Template->getPageTitle(); ?></h1>
<div class="moduleBox">
<?php if ($Qspecials->numberOfRows() > 0) { ?>
<div class="content">
<?php
$i = 0;
while ($Qspecials->next()) {
if(($i % 3 == 0) && ($i != 0))
echo '<div style="clear:both"></div>';
echo '<div style="margin-top: 10px; float:left; width: 33%; text-align: center">' .
'<span style="display:block; height: 32px; text-align: center">' . osc_link_object(osc_href_link(FILENAME_PRODUCTS, $Qspecials->value('products_id')), $Qspecials->value('products_name')) . '</span>' .
osc_link_object(osc_href_link(FILENAME_PRODUCTS, $Qspecials->value('products_id')), $osC_Image->show($Qspecials->value('image'), $Qspecials->value('products_name'))) .
'<span style="display:block; padding: 3px; text-align: center"><s>' . $osC_Currencies->displayPrice($Qspecials->value('products_price'), $Qspecials->valueInt('products_tax_class_id')) . '</s> <span class="productSpecialPrice">' . $osC_Currencies->displayPrice($Qspecials->value('specials_new_products_price'), $Qspecials->valueInt('products_tax_class_id')) . '</span>' .
osc_link_object(osc_href_link(FILENAME_PRODUCTS, $Qspecials->value('products_id') . '&action=cart_add'), osc_draw_image_button('button_add_to_cart.png', $osC_Language->get('button_add_to_cart'))) .
'</div>';
$i++;
}
?>
<div style="clear:both"></div>
</div>
<div class="listingPageLinks">
<span style="float: right;"><?php echo $Qspecials->getBatchPageLinks('specials&page'); ?></span>
<?php echo $Qspecials->getBatchTotalPages($osC_Language->get('result_set_number_of_products')); ?>
</div>
<?php } ?>
</div>