You are here

function hook_default_user_stats in User Stats 7

Same name and namespace in other branches
  1. 6 user_stats.api.php \hook_default_user_stats()

Aggregates list of all custom user statistics

1 invocation of hook_default_user_stats()
user_stats_get_stats in ./user_stats.module
Returns user stats.

File

./user_stats.api.php, line 6

Code

function hook_default_user_stats() {
  return array(
    'custom_count_1' => 'custom_count_1_callback',
    'custom_count_2' => 'custom_count_2_callback',
  );
}