You are here

function uc_recurring_uninstall in Ubercart 5

File

payment/uc_recurring/uc_recurring.install, line 58

Code

function uc_recurring_uninstall() {
  switch ($GLOBALS['db_type']) {
    case 'mysql':
    case 'mysqli':
      db_query("DROP TABLE IF EXISTS {uc_recurring_products}");
      db_query("DROP TABLE IF EXISTS {uc_recurring_users}");
      break;
    case 'pgsql':
      db_query("DROP TABLE {uc_recurring_products}");
      db_query("DROP TABLE {uc_recurring_users}");
      break;
  }
  db_query("DELETE FROM {variable} WHERE name LIKE 'uc_recurring_%%'");
  cache_clear_all('variables', 'cache');
}