You are here

function blocktheme_uninstall in Block Theme 6

Same name and namespace in other branches
  1. 7 blocktheme.install \blocktheme_uninstall()

Implementation of hook_uninstall().

File

./blocktheme.install, line 11
Install file for blocktheme module.

Code

function blocktheme_uninstall() {
  variable_del('blocktheme');
  variable_del('blocktheme_show_custom_block_theme');
  variable_del('blocktheme_themes');
  variable_del('blocktheme_vars');
}