You are here

function guestbook_perm in Guestbook 5

Same name and namespace in other branches
  1. 5.2 guestbook.module \guestbook_perm()
  2. 6.2 guestbook.module \guestbook_perm()
  3. 6 guestbook.module \guestbook_perm()

Implementation of hook_perm().

File

./guestbook.module, line 161

Code

function guestbook_perm() {
  return array(
    'access site guestbook',
    'access user guestbooks',
    'post in site guestbook',
    'post in user guestbooks',
    'administer all guestbooks',
  );
}