You are here

function uc_quote_uninstall in Ubercart 5

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

File

shipping/uc_quote/uc_quote.install, line 97

Code

function uc_quote_uninstall() {
  db_query("DROP TABLE {uc_quote_shipping_types}");
  db_query("DROP TABLE {uc_quote_manufacturer_locations}");
  db_query("DROP TABLE {uc_quote_product_locations}");
  db_query("DROP TABLE {uc_order_quotes}");
  variable_del('uc_quote_store_default_address');
  variable_del('uc_quote_log_errors');
  variable_del('uc_quote_display_debug');
  variable_del('uc_quote_require_quote');
  variable_del('uc_quote_enabled');
  variable_del('uc_quote_method_weight');
  variable_del('uc_quote_type_weight');
  variable_del('uc_store_shipping_type');
}