listing_best_sellers.php File Reference
Go to the source code of this file.
Variables
- $best_sellers_query_raw = "select p.products_id, pd.products_name, p.products_image, p.products_price, p.products_quantity, p.products_tax_class_id, m.manufacturers_name, m.manufacturers_id, p.products_model, p.products_weight, IF(s.status, s.specials_new_products_price, NULL) as specials_new_products_price, IF(s.status, s.specials_new_products_price, p.products_price) as final_price from " . TABLE_PRODUCTS . " p left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id left join " . TABLE_MANUFACTURERS . " m on (p.manufacturers_id = m.manufacturers_id) left join " . TABLE_PRODUCTS_DESCRIPTION . " pd on (p.products_id = pd.products_id and pd.language_id = '" . (int)$languages_id . "'), " . TABLE_CATEGORIES . " c, " . TABLE_PRODUCTS_TO_CATEGORIES . " p2c where p.products_status = '1' and p.products_id = p2c.products_id and c.categories_id=p2c.categories_id and categories_status = 1 and p.products_ordered > 0 order by p.products_ordered desc, pd.products_name "
- if(tep_db_num_rows(tep_db_query($best_sellers_query_raw))
< $page->_conf_value('MIN_DISPLAY_BESTSELLERS')) else - endif
Variable Documentation
| $best_sellers_query_raw = "select p.products_id, pd.products_name, p.products_image, p.products_price, p.products_quantity, p.products_tax_class_id, m.manufacturers_name, m.manufacturers_id, p.products_model, p.products_weight, IF(s.status, s.specials_new_products_price, NULL) as specials_new_products_price, IF(s.status, s.specials_new_products_price, p.products_price) as final_price from " . TABLE_PRODUCTS . " p left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id left join " . TABLE_MANUFACTURERS . " m on (p.manufacturers_id = m.manufacturers_id) left join " . TABLE_PRODUCTS_DESCRIPTION . " pd on (p.products_id = pd.products_id and pd.language_id = '" . (int)$languages_id . "'), " . TABLE_CATEGORIES . " c, " . TABLE_PRODUCTS_TO_CATEGORIES . " p2c where p.products_status = '1' and p.products_id = p2c.products_id and c.categories_id=p2c.categories_id and categories_status = 1 and p.products_ordered > 0 order by p.products_ordered desc, pd.products_name " |
Definition at line 12 of file listing_best_sellers.php.
| if (tep_db_num_rows(tep_db_query($best_sellers_query_raw))< $page->_conf_value('MIN_DISPLAY_BESTSELLERS')) else |
Definition at line 15 of file listing_best_sellers.php.
Definition at line 20 of file listing_best_sellers.php.
