You are here

function currency_api_uninstall in Currency 7

Same name and namespace in other branches
  1. 5 currency_api/currency_api.install \currency_api_uninstall()
  2. 6 currency_api/currency_api.install \currency_api_uninstall()

Implements hook_uninstall().

This will automatically remove the variables defined by Currency API.

File

currency_api/currency_api.install, line 56
This module provides an API for currency conversion.

Code

function currency_api_uninstall() {
  db_query("DELETE FROM {variable} WHERE name LIKE 'currency_api%'");
}