function uc_recurring_uninstall in UC Recurring Payments and Subscriptions 6.2
Same name and namespace in other branches
- 6 uc_recurring.install \uc_recurring_uninstall()
- 7.2 uc_recurring.install \uc_recurring_uninstall()
Implementation hook_uninstall().
File
- ./
uc_recurring.install, line 244 - Installs the Recurring Fee module.
Code
function uc_recurring_uninstall() {
drupal_uninstall_schema('uc_recurring');
db_query("DELETE FROM {variable} WHERE name LIKE 'uc_recurring_%%'");
cache_clear_all('variables', 'cache');
}