function advuser_perm in Advanced User 5.2
Same name and namespace in other branches
- 6.3 advuser.module \advuser_perm()
- 6.2 advuser.module \advuser_perm()
Implementation of hook_perm().
File
- ./
advuser.module, line 18 - 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',
);
}