You are here

function user_stats_reset_post_count in User Stats 5

Same name and namespace in other branches
  1. 6 user_stats.admin.inc \user_stats_reset_post_count()
  2. 7 user_stats.admin.inc \user_stats_reset_post_count()

Reset post count handler.

1 string reference to 'user_stats_reset_post_count'
user_stats_menu in ./user_stats.module
Implementation of hook_menu().

File

./user_stats.module, line 181
User Stats provides commonly requested user statistics for themers. These are:

Code

function user_stats_reset_post_count() {
  variable_set('user_stats_rebuild_stats', TRUE);
  user_stats_reset_counts('user_post_count');
  drupal_set_message(t('Post counts have been reset.'));
  drupal_goto('admin/settings/user_stats');
}