You are here

function follow_uninstall in Follow 6

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

Implementation of hook_uninstall().

File

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

Code

function follow_uninstall() {
  drupal_uninstall_schema('follow');
  variable_del('follow_user_block_title');
  variable_del('follow_site_block_title');
  variable_del('follow_site_block_user');
  variable_del('follow_icon_style');
}