You are here

function uc_atctweaks_uninstall in UC Add to Cart Tweaks 7

Same name and namespace in other branches
  1. 6 uc_atctweaks.install \uc_atctweaks_uninstall()

Implementation of hook_uninstall()

File

./uc_atctweaks.install, line 55
Installs the necessary table for the Add to Cart Tweaks product features.

Code

function uc_atctweaks_uninstall() {
  db_delete('uc_product_features')
    ->condition('fid', 'atctweaks')
    ->execute();
}