You are here

function themekey_ui_disable in ThemeKey 7.3

Same name and namespace in other branches
  1. 7 themekey_ui.install \themekey_ui_disable()
  2. 7.2 themekey_ui.install \themekey_ui_disable()

Implements hook_disable().

File

./themekey_ui.install, line 68
Database schema of

Code

function themekey_ui_disable() {
  module_load_include('inc', 'themekey', 'themekey_build');
  themekey_update_static_rule('themekey_ui:node_triggers_theme', FALSE);
  themekey_update_static_rule('themekey_ui:author_triggers_theme', FALSE);
  themekey_update_static_rule('themekey_ui:contact_triggers_theme', FALSE);
  themekey_update_static_rule('themekey_ui:profile_triggers_theme', FALSE);
}