You are here

function uc_recurring_uninstall in UC Recurring Payments and Subscriptions 6

Same name and namespace in other branches
  1. 6.2 uc_recurring.install \uc_recurring_uninstall()
  2. 7.2 uc_recurring.install \uc_recurring_uninstall()

File

./uc_recurring.install, line 148
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');
}