You are here

themekey_compat.install in ThemeKey 7.2

Same filename and directory in other branches
  1. 7.3 themekey_compat.install
  2. 7 themekey_compat.install

Cleans up variables when uninstalling

@author Markus Kalkbrenner | bio.logis GmbH

See also

themekey_compyt.module

http://drupal.org/user/124705

File

themekey_compat.install
View source
<?php

/**
 * @file
 * Cleans up variables when uninstalling
 * @see themekey_compyt.module
 *
 * @author Markus Kalkbrenner | bio.logis GmbH
 *   @see http://drupal.org/user/124705
 */

/**
 * Implements hook_uninstall().
 */
function themekey_compat_uninstall() {

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

Functions

Namesort descending Description
themekey_compat_uninstall Implements hook_uninstall().