You are here

currency.install in Currency 5

Same filename and directory in other branches
  1. 8.3 currency.install

File

currency.install
View source
<?php

/**
 * Implementation of hook_uninstall()
 *
 * This will automatically remove the database tables and varibles
 * defined by the Currency module.
 */
function currency_uninstall() {
  db_query("DELETE FROM {variable} WHERE name LIKE 'currency_%%'");
}

Functions

Namesort descending Description
currency_uninstall Implementation of hook_uninstall()