currency.install in Currency 5
Same filename and directory in other branches
File
currency.installView 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
Name | Description |
---|---|
currency_uninstall | Implementation of hook_uninstall() |