function uc_restrict_qty_uninstall in Ubercart Restrict Qty 6.2
Same name and namespace in other branches
- 7 uc_restrict_qty.install \uc_restrict_qty_uninstall()
Implementation of hook_uninstall().
Remove the variables and schema corresponding to the uc_restrict_qty module.
File
- ./
uc_restrict_qty.install, line 82 - uc_restrict_qty module install file.
Code
function uc_restrict_qty_uninstall() {
drupal_uninstall_schema('uc_restrict_qty');
db_query("DELETE FROM {variable} WHERE name LIKE 'uc_restrict_qty_%%'");
}