function themekey_uninstall in ThemeKey 6.2
Same name and namespace in other branches
- 6.4 themekey.install \themekey_uninstall()
- 6 themekey.install \themekey_uninstall()
- 6.3 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 68 - Database schema of @author Markus Kalkbrenner | Cocomore AG
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');
}