You are here

function uc_order_uninstall in Ubercart 7.3

Same name and namespace in other branches
  1. 8.4 uc_order/uc_order.install \uc_order_uninstall()
  2. 5 uc_order/uc_order.install \uc_order_uninstall()
  3. 6.2 uc_order/uc_order.install \uc_order_uninstall()

Implements hook_uninstall().

File

uc_order/uc_order.install, line 698
Install, update and uninstall functions for the uc_order module.

Code

function uc_order_uninstall() {
  db_delete('variable')
    ->condition('name', 'uc_state_%', 'LIKE')
    ->execute();
  variable_del('uc_order_capitalize_addresses');
  variable_del('uc_cust_order_invoice_template');
}