function workflow_notify_permission in Workflow 7
Same name and namespace in other branches
- 7.2 workflow_notify/workflow_notify.module \workflow_notify_permission()
Implements hook_permission().
File
- workflow_notify/
workflow_notify.module, line 10 - Notify roles for Workfllow 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.'),
),
);
}