function guestbook_permission in Guestbook 7.2
Implementation of hook_permission().
File
- ./
guestbook.module, line 183
Code
function guestbook_permission() {
return array(
'moderate all guestbooks' => array(
'title' => t('Moderate all guestbooks'),
),
'moderate own guestbook' => array(
'title' => t('Moderate own guestbook'),
),
'access site guestbook' => array(
'title' => t('View site guestbook'),
),
'access user guestbooks' => array(
'title' => t('View user guestbooks'),
),
'post in site guestbook' => array(
'title' => t('Post in site guestbook'),
),
'post in user guestbooks' => array(
'title' => t('Post in user guestbooks'),
),
);
}