You are here

function user_stats_reset_login_count in User Stats 6

Same name and namespace in other branches
  1. 5 user_stats.module \user_stats_reset_login_count()
  2. 7 user_stats.admin.inc \user_stats_reset_login_count()

Reset login count handler.

2 string references to 'user_stats_reset_login_count'
user_stats_menu in ./user_stats.module
Implementation of hook_menu().
user_stats_uninstall in ./user_stats.install
Implementation of hook_uninstall().

File

./user_stats.admin.inc, line 180
Commonly requested user statistics for themers administration interface.

Code

function user_stats_reset_login_count() {
  user_stats_reset_counts('login_count');
  drupal_set_message(t('User login counts have been reset.'));
  drupal_goto('admin/settings/user_stats');
}