You are here

function simplenews_status_reset_permission in Simplenews Status Reset 7

Implements hook_permission().

File

./simplenews_status_reset.module, line 10
Simplenews Status Reset module file.

Code

function simplenews_status_reset_permission() {
  return array(
    'reset simplenews status' => array(
      'title' => t('Reset Simplenews sent status'),
      'description' => t('Reset the sent status of an already sent Simplenews newsletter issue.'),
    ),
  );
}