function uc_varprice_feature_delete in UC Variable Price 6
Same name and namespace in other branches
- 7 uc_varprice.module \uc_varprice_feature_delete()
1 string reference to 'uc_varprice_feature_delete'
- uc_varprice_product_feature in ./
uc_varprice.module - Implementation of hook_product_feature().
File
- ./
uc_varprice.module, line 564 - Defines a product feature to turn any product into a variable priced product.
Code
function uc_varprice_feature_delete($feature) {
db_query("DELETE FROM {uc_varprice_products} WHERE pfid = %d", $feature['pfid']);
}