function simplenews_perm in Simplenews 6
Same name and namespace in other branches
- 5 simplenews.module \simplenews_perm()
- 6.2 simplenews.module \simplenews_perm()
Implementation of hook_perm().
File
- ./
simplenews.module, line 69 - Simplnews node handling, sent email, newsletter block and general hooks
Code
function simplenews_perm() {
return array(
'administer newsletters',
'administer simplenews subscriptions',
'administer simplenews settings',
'send newsletter',
'subscribe to newsletters',
);
}