function themekey_uninstall in ThemeKey 6.3
Same name and namespace in other branches
- 6.4 themekey.install \themekey_uninstall()
- 6 themekey.install \themekey_uninstall()
- 6.2 themekey.install \themekey_uninstall()
- 7.3 themekey.install \themekey_uninstall()
- 7 themekey.install \themekey_uninstall()
- 7.2 themekey.install \themekey_uninstall()
Implements hook_uninstall().
File
- ./
themekey.install, line 55 - Database schema of
Code
function themekey_uninstall() {
// Drop tables
drupal_uninstall_schema('themekey');
// Remove variables
db_query("DELETE FROM {variable} WHERE name LIKE 'themekey_%%'");
cache_clear_all('variables', 'cache');
}