You are here

function module_grants_uninstall in Module Grants 6.4

Same name and namespace in other branches
  1. 6.3 module_grants.install \module_grants_uninstall()
  2. 7 module_grants.install \module_grants_uninstall()

Implementation of hook_uninstall(). I'm not convinced that deleting these is a good thing, as these will have to be flicked back on when re-installing.

File

./module_grants.install, line 26
Install and uninstall hooks for Module Grants module

Code

function module_grants_uninstall() {
  variable_del('module_grants_lenient');
  variable_del('module_grants_OR_modules');
  variable_del('show_taxonomy_terms');
}