You are here

function uc_quote_uninstall in Ubercart 7.3

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

Implements hook_uninstall().

File

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

Code

function uc_quote_uninstall() {
  db_delete('variable')
    ->condition('name', 'uc_quote_%', 'LIKE')
    ->execute();
  variable_del('uc_store_shipping_type');
}