You are here

function themekey_compat_uninstall in ThemeKey 7.2

Same name and namespace in other branches
  1. 7.3 themekey_compat.install \themekey_compat_uninstall()
  2. 7 themekey_compat.install \themekey_compat_uninstall()

Implements hook_uninstall().

File

./themekey_compat.install, line 16
Cleans up variables when uninstalling

Code

function themekey_compat_uninstall() {

  // Remove variables
  variable_del('themekey_compat_modules_enabled');
  variable_del('themekey_compat_modules_no_default_theme');
}