function masquerade_perm in Masquerade 6
Same name and namespace in other branches
- 5 masquerade.module \masquerade_perm()
Implementation of hook_perm().
Return value
array
File
- ./
masquerade.module, line 26 - masquerade.module
Code
function masquerade_perm() {
return array(
'masquerade as user',
'masquerade as any user',
'masquerade as admin',
'administer masquerade',
);
}