You are here

function user_stats_uninstall in User Stats 7

Same name and namespace in other branches
  1. 5 user_stats.install \user_stats_uninstall()
  2. 6 user_stats.install \user_stats_uninstall()

Implements hook_uninstall().

File

./user_stats.install, line 80
Install and update hooks for the User Stats module.

Code

function user_stats_uninstall() {
  variable_del('user_stats_rebuild_stats');
  variable_del('user_stats_last_cron_check');
  variable_del('user_stats_included_content_types');
  variable_del('user_stats_reset_login_count');
  variable_del('user_stats_reset_post_count');
  variable_del('user_stats_user_per_cron');
  variable_del('user_stats_count_posts');
  variable_del('user_stats_count_comments');
  variable_del('user_stats_count_logins');
}