You are here

uc_optional_checkout_review.install in Ubercart Optional Checkout Review 6

Same filename and directory in other branches
  1. 7 uc_optional_checkout_review.install

File

uc_optional_checkout_review.install
View source
<?php

// $Id$

/**
 * @file
 * Install hooks for uc_optional_checkout_review.module.
 */

/**
 * Create tables on install.
 */
function uc_optional_checkout_review_install() {

  // Nothing to install.
}

/**
 * Remove tables on uninstall.
 */
function uc_optional_checkout_review_uninstall() {
  variable_del('uc_checkout_skip_review');
}

Functions

Namesort descending Description
uc_optional_checkout_review_install Create tables on install.
uc_optional_checkout_review_uninstall Remove tables on uninstall.