You are here

commerce_apd.install in Auto Product Display 7

Contain function for uninstalling Auto Product Display

File

commerce_apd.install
View source
<?php

/**
 * @file
 * Contain function for uninstalling Auto Product Display
 */

/**
 * Implements hook_uninstall().
 */
function commerce_apd_uninstall() {

  // Delete the unused variables.
  variable_del('commerce_apd_product_display');
  variable_del('commerce_apd_show_product_display_form');
}

Functions

Namesort descending Description
commerce_apd_uninstall Implements hook_uninstall().