You are here

function simplenews_perm in Simplenews 6

Same name and namespace in other branches
  1. 5 simplenews.module \simplenews_perm()
  2. 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',
  );
}