You are here

function workflow_notify_permission in Workflow 7.2

Same name and namespace in other branches
  1. 7 workflow_notify/workflow_notify.module \workflow_notify_permission()

Implements hook_permission().

File

workflow_notify/workflow_notify.module, line 66
Notify roles for Workflow state transitions.

Code

function workflow_notify_permission() {
  return array(
    'workflow notify' => array(
      'title' => t('Receive workflow notifications'),
      'description' => t('The user may be notified of a workflow state change.'),
    ),
  );
}