function shoutbox_perm in Shoutbox 6.2
Same name and namespace in other branches
- 5 shoutbox.module \shoutbox_perm()
- 6 shoutbox.module \shoutbox_perm()
Implementation of hook_perm().
File
- ./
shoutbox.module, line 139 - Shout box module displays a block for users to create short messages for the whole site. Uses AHAH to update the database and display content.
Code
function shoutbox_perm() {
return array(
'administer shoutbox',
'post shouts',
'moderate shoutbox',
'post shouts without approval',
'delete own shouts',
'edit own shouts',
'view shouts',
);
}