You are here

function user_stats_user_stats in User Stats 6

Same name and namespace in other branches
  1. 7 user_stats.module \user_stats_user_stats()

Implementation of hook_user_stats().

Invoke the Rules module.

File

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

Code

function user_stats_user_stats($type, $op, $uid, $value) {
  if (module_exists('rules')) {
    rules_invoke_event('user_stats_' . $type . '_' . $op, $uid, $value);
  }
}