uc_optional_checkout_review.install in Ubercart Optional Checkout Review 6
Same filename and directory in other branches
Install hooks for uc_optional_checkout_review.module.
File
uc_optional_checkout_review.installView 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
Name![]() |
Description |
---|---|
uc_optional_checkout_review_install | Create tables on install. |
uc_optional_checkout_review_uninstall | Remove tables on uninstall. |