You are here

function uc_payment_pack_uninstall in Ubercart 6.2

Same name and namespace in other branches
  1. 5 payment/uc_payment_pack/uc_payment_pack.install \uc_payment_pack_uninstall()
  2. 7.3 payment/uc_payment_pack/uc_payment_pack.install \uc_payment_pack_uninstall()

File

payment/uc_payment_pack/uc_payment_pack.install, line 106
Install hooks for uc_payment_pack.module.

Code

function uc_payment_pack_uninstall() {
  drupal_uninstall_schema('uc_payment_pack');
  db_query("DELETE FROM {variable} WHERE name LIKE 'uc_check_%%'");
  db_query("DELETE FROM {variable} WHERE name LIKE 'uc_cod_%%'");
}