You are here

function themekey_debug_uninstall in ThemeKey 6.3

Same name and namespace in other branches
  1. 6.4 themekey_debug.install \themekey_debug_uninstall()
  2. 6.2 themekey_debug.install \themekey_debug_uninstall()
  3. 7.3 themekey_debug.install \themekey_debug_uninstall()
  4. 7 themekey_debug.install \themekey_debug_uninstall()
  5. 7.2 themekey_debug.install \themekey_debug_uninstall()

Implements hook_uninstall().

File

./themekey_debug.install, line 16
Cleans up variables when unistalling

Code

function themekey_debug_uninstall() {

  // Remove variables
  db_query("DELETE FROM {variable} WHERE name LIKE 'themekey_debug_%%'");
  cache_clear_all('variables', 'cache');
}