function realname_perm in Real Name 5
Same name and namespace in other branches
- 6 realname.module \realname_perm()
Implementation of hook_perm().
File
- ./realname.module, line 39 
- The RealName module allows the admin to choose fields from the user profile that will be used to add a "realname" element (method) to a user object. Hook_user is used to automatically add this to any user object that is loaded.
Code
function realname_perm() {
  return array(
    'use realname',
  );
}