You are here

function quant_uninstall in Quant 6

Same name and namespace in other branches
  1. 7 quant.install \quant_uninstall()

Implementation of hook_uninstall()

File

./quant.install, line 6

Code

function quant_uninstall() {

  // Delete variables
  foreach (array(
    'quant_height',
    'quant_weight',
    'quant_visible',
    'quant_palette',
    'quant_use_images',
  ) as $var) {
    variable_del($var);
  }
}