You are here

function globalredirect_uninstall in Global Redirect 5

Same name and namespace in other branches
  1. 6 globalredirect.install \globalredirect_uninstall()
  2. 7 globalredirect.install \globalredirect_uninstall()

Implementation of hook_uninstall(). Removes instances of variable settings

File

./globalredirect.install, line 22
This is the GlobalRedirect install file which configures the system during install.

Code

function globalredirect_uninstall() {
  variable_del('globalredirect_deslash');
  variable_del('globalredirect_trailingzero');
  variable_del('globalredirect_nonclean2clean');
}