You are here

function themekey_uninstall in ThemeKey 7

Same name and namespace in other branches
  1. 6.4 themekey.install \themekey_uninstall()
  2. 6 themekey.install \themekey_uninstall()
  3. 6.2 themekey.install \themekey_uninstall()
  4. 6.3 themekey.install \themekey_uninstall()
  5. 7.3 themekey.install \themekey_uninstall()
  6. 7.2 themekey.install \themekey_uninstall()

Implements hook_uninstall().

File

./themekey.install, line 97
Database schema of

Code

function themekey_uninstall() {

  // Remove variables
  db_delete('variable')
    ->condition('name', 'themekey_%%', 'LIKE')
    ->execute();
  cache_clear_all('variables', 'cache');
}