function uc_atctweaks_feature_delete in UC Add to Cart Tweaks 6
Same name and namespace in other branches
- 7 uc_atctweaks.module \uc_atctweaks_feature_delete()
1 string reference to 'uc_atctweaks_feature_delete'
- uc_atctweaks_product_feature in ./
uc_atctweaks.module - Implementation of hook_product_feature().
File
- ./
uc_atctweaks.module, line 251 - Defines a product feature to tweak the add to cart form behavior.
Code
function uc_atctweaks_feature_delete($feature) {
db_query("DELETE FROM {uc_atctweaks_products} WHERE pfid = %d", $feature['pfid']);
}