You are here

function uc_quote_uninstall in Ubercart 6.2

Same name and namespace in other branches
  1. 5 shipping/uc_quote/uc_quote.install \uc_quote_uninstall()
  2. 7.3 shipping/uc_quote/uc_quote.install \uc_quote_uninstall()

Implements hook_uninstall().

File

shipping/uc_quote/uc_quote.install, line 181
Install, update and uninstall functions for the uc_quote module.

Code

function uc_quote_uninstall() {
  drupal_uninstall_schema('uc_quote');
  db_query("DELETE FROM {variable} WHERE name LIKE 'uc_quote_%%'");
  variable_del('uc_store_shipping_type');
}