You are here

function simplenews_scheduler_perm in Simplenews Scheduler 6

Same name and namespace in other branches
  1. 5 simplenews_scheduler.module \simplenews_scheduler_perm()
  2. 6.2 simplenews_scheduler.module \simplenews_scheduler_perm()

Implementation of hook_perm().

File

./simplenews_scheduler.module, line 28
Simplenews Scheduler module allows a schedule to be set for sending (and resending) a Simplenews item.

Code

function simplenews_scheduler_perm() {
  return array(
    'overview scheduled newsletters',
    'send scheduled newsletters',
  );
}