function uc_credit_uninstall in Ubercart 7.3
Same name and namespace in other branches
- 5 payment/uc_credit/uc_credit.install \uc_credit_uninstall()
- 6.2 payment/uc_credit/uc_credit.install \uc_credit_uninstall()
Implements hook_uninstall().
File
- payment/
uc_credit/ uc_credit.install, line 13 - Install, update and uninstall functions for the uc_credit module.
Code
function uc_credit_uninstall() {
db_delete('variable')
->condition('name', 'uc_credit_%', 'LIKE')
->execute();
}