You are here

function follow_uninstall in Follow 7.2

Same name and namespace in other branches
  1. 5 follow.install \follow_uninstall()
  2. 6 follow.install \follow_uninstall()
  3. 7 follow.install \follow_uninstall()

Implements hook_uninstall().

File

./follow.install, line 91
Follow module's install and uninstall code.

Code

function follow_uninstall() {
  variable_del('follow_user_block_title');
  variable_del('follow_site_block_title');
  variable_del('follow_site_block_user');
  variable_del('follow_site_icon_style');
  variable_del('follow_user_icon_style');
  variable_del('follow_site_alignment');
  variable_del('follow_user_alignment');
  variable_del('follow_site_hide_text');
  variable_del('follow_user_hide_text');
}