You are here

function user_stats_perm in User Stats 6

Same name and namespace in other branches
  1. 5 user_stats.module \user_stats_perm()

Implementation of hook_perm().

File

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

Code

function user_stats_perm() {
  return array(
    'administer user stats',
    'View statistics',
    'View IP addresses',
  );
}