function guestbook_perm in Guestbook 6
Same name and namespace in other branches
- 5.2 guestbook.module \guestbook_perm()
- 5 guestbook.module \guestbook_perm()
- 6.2 guestbook.module \guestbook_perm()
Implementation of hook_perm()
File
- ./
guestbook.module, line 145
Code
function guestbook_perm() {
return array(
'access site guestbook',
'access user guestbooks',
'post in site guestbook',
'post in user guestbooks',
'administer all guestbooks',
);
}