You are here

function uc_varprice_uninstall in UC Variable Price 7

Same name and namespace in other branches
  1. 6 uc_varprice.install \uc_varprice_uninstall()

Implementation of hook_uninstall()

File

./uc_varprice.install, line 75
Installs the necessary table for the Variable Price product features.

Code

function uc_varprice_uninstall() {
  db_delete('uc_product_features')
    ->condition('fid', 'varprice')
    ->execute();
  variable_del('uc_varprice_global_default');
}