You are here

uc_out_of_stock.install in Ubercart Out of stock Notification 7

(Un)Installation procedures.

For now it basically removes the used variables.

File

uc_out_of_stock.install
View source
<?php

/**
 * @file
 * (Un)Installation procedures.
 *
 * For now it basically removes the used variables.
 */

/**
 * Implements hook_uninstall().
 */
function uc_out_of_stock_uninstall() {
  variable_del('uc_out_of_stock_text');
  variable_del('uc_out_of_stock_disable_js');
  variable_del('uc_out_of_stock_instock');
  variable_del('uc_out_of_stock_throbber');
}

Functions

Namesort descending Description
uc_out_of_stock_uninstall Implements hook_uninstall().