$ttitle .= 'Bulk ';
}
$title = 'All ' . $ttitle . 'Products';
$list_box_contents = array();
$listing_sql = "SELECT p.products_type, p.products_id, pd.products_name, p.products_image, p.products_price, p.products_tax_class_id,\n                                    p.products_date_added, p.products_model, p.products_quantity, p.products_weight, p.product_is_call,\n                                    p.product_is_always_free_shipping, p.products_qty_box_status,\n                                    p.master_categories_id, i.products_id, i.is_organic, i.is_heirloom, i.is_southern, i.is_eco\n                             FROM " . TABLE_PRODUCTS . " p, sese_products_icons i, " . TABLE_PRODUCTS_DESCRIPTION . " pd\n                             WHERE p.products_status = 1\n                             AND p.products_id = pd.products_id\n                             AND p.products_id = i.products_id\n                             AND pd.language_id = :languageID " . $restrict . $order_by;
$listing_sql = $db->bindVars($listing_sql, ':languageID', $_SESSION['languages_id'], 'integer');
$column_list = array('PRODUCT_LIST_IMAGE', 'PRODUCT_LIST_NAME', 'PRODUCT_LIST_PRICE');
?>

<div class='page-header'><h1 id="allProductsDefaultHeading"><?php 
echo $title;
?>
</h1></div>

<?php 
echo '<div class="clearfix"><div class="pull-right">' . BootstrapUtils::render_page_count_links() . '</div><div class="pull-left">';
require $template->get_template_dir('/tpl_modules_listing_display_order.php', DIR_WS_TEMPLATE, $current_page_base, 'templates') . '/tpl_modules_listing_display_order.php';
echo '</div></div>';
?>

<br class="clearBoth" />

<?php 
/**
 * display the new products
 */
require $template->get_template_dir('tpl_modules_product_listing.php', DIR_WS_TEMPLATE, $current_page_base, 'templates') . '/' . 'tpl_modules_product_listing.php';
?>


</form>