function uc_varprice_feature_delete in UC Variable Price 7
Same name and namespace in other branches
- 6 uc_varprice.module \uc_varprice_feature_delete()
Variable Price product feature delete function.
1 string reference to 'uc_varprice_feature_delete'
- uc_varprice_uc_product_feature in ./
uc_varprice.module - Implements hook_uc_product_feature().
File
- ./
uc_varprice.module, line 424 - Defines a product feature to turn any product into a variable priced product.
Code
function uc_varprice_feature_delete($feature) {
db_delete('uc_varprice_products')
->condition('pfid', $feature['pfid'])
->execute();
}