function uc_atctweaks_product_load in UC Add to Cart Tweaks 6
Same name and namespace in other branches
- 7 uc_atctweaks.module \uc_atctweaks_product_load()
1 call to uc_atctweaks_product_load()
- uc_atctweaks_form_alter in ./
uc_atctweaks.module - Implementation of hook_form_alter().
File
- ./
uc_atctweaks.module, line 256 - Defines a product feature to tweak the add to cart form behavior.
Code
function uc_atctweaks_product_load($nid) {
return db_fetch_object(db_query("SELECT atc.* FROM {uc_product_features} AS pf LEFT JOIN {uc_atctweaks_products} AS atc ON pf.pfid = atc.pfid WHERE pf.fid = 'atctweaks' AND pf.nid = %d", $nid));
}