You are here

function uc_recurring_uninstall in UC Recurring Payments and Subscriptions 7.2

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

Implements hook_uninstall().

File

./uc_recurring.install, line 253
Installs the Recurring Fee module.

Code

function uc_recurring_uninstall() {
  $result = db_query("SELECT name FROM {variable} WHERE name LIKE 'uc_recurring_%'");
  foreach ($result as $row) {
    variable_del($row->name);
  }
}