function currency_uninstall in Currency 5
Same name and namespace in other branches
- 7.2 currency/currency.install \currency_uninstall()
Implementation of hook_uninstall()
This will automatically remove the database tables and varibles defined by the Currency module.
File
- ./
currency.install, line 9
Code
function currency_uninstall() {
db_query("DELETE FROM {variable} WHERE name LIKE 'currency_%%'");
}