function themekey_css_disable in ThemeKey 7.3
Implements hook_disable().
File
- themekey_css/
themekey_css.install, line 44 - Database schema of
Code
function themekey_css_disable() {
// We should delete 'themekey_css_debug_css_files' when module is disabled
// because if 'themekey_css_debug_css_files' == TRUE but module was disabled
// there will be css debug message on a page.
variable_del('themekey_css_debug_css_files');
}