function advuser_perm in Advanced User 6.3
Same name and namespace in other branches
- 5.2 advuser.module \advuser_perm()
- 6.2 advuser.module \advuser_perm()
Implementation of hook_perm().
Related topics
File
- ./
advuser.module, line 121 - Advanced user module allows you to select users based on an advanced set of filtering and apply actions to block, unblock, delete or email the selected users.
Code
function advuser_perm() {
return array(
'administer advuser',
'access advuser',
'send email advuser',
'receive email advuser',
);
}