function simplenews_perm in Simplenews 6.2
Same name and namespace in other branches
- 5 simplenews.module \simplenews_perm()
- 6 simplenews.module \simplenews_perm()
Implementation of hook_perm().
File
- ./
simplenews.module, line 75 - Simplenews 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',
);
}