You are here

function custom_count_2_callback in User Stats 7

Same name and namespace in other branches
  1. 6 user_stats.api.php \custom_count_2_callback()
1 string reference to 'custom_count_2_callback'
hook_default_user_stats in ./user_stats.api.php
Aggregates list of all custom user statistics

File

./user_stats.api.php, line 23

Code

function custom_count_2_callback($uid = NULL) {
  global $user;
  if ($uid == NULL) {
    $uid = $user->uid;
  }
  return 2;
}