You are here

function uc_varprice_uninstall in UC Variable Price 6

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

File

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

Code

function uc_varprice_uninstall() {
  drupal_uninstall_schema('uc_varprice');
  db_query("DELETE FROM {uc_product_features} WHERE fid = 'varprice'");
  variable_del('uc_varprice_global_default');
  global $conf;
  foreach (array_keys($conf) as $key) {
    if (strpos($key, 'ucvp_class_def_') === 0) {
      variable_del($key);
    }
  }
}