You are here

function uc_2checkout_uninstall in Ubercart 7.3

Same name and namespace in other branches
  1. 6.2 payment/uc_2checkout/uc_2checkout.install \uc_2checkout_uninstall()

Implements hook_uninstall().

File

payment/uc_2checkout/uc_2checkout.install, line 11
Install, update and uninstall functions for the uc_2checkout module.

Code

function uc_2checkout_uninstall() {

  // Remove all module variables from the database.
  variable_del('uc_2checkout_check');
  variable_del('uc_2checkout_checkout_type');
  variable_del('uc_2checkout_currency_code');
  variable_del('uc_2checkout_demo');
  variable_del('uc_2checkout_language');
  variable_del('uc_2checkout_notification_url');
  variable_del('uc_2checkout_method_title');
  variable_del('uc_2checkout_secret_word');
  variable_del('uc_2checkout_server_url');
  variable_del('uc_2checkout_sid');
}