You are here

function workflow_perm in Workflow 6

Same name and namespace in other branches
  1. 5.2 workflow.module \workflow_perm()
  2. 5 workflow.module \workflow_perm()
  3. 6.2 workflow.module \workflow_perm()

Implementation of hook_perm().

File

./workflow.module, line 15
Support workflows made up of arbitrary states.

Code

function workflow_perm() {
  return array(
    'schedule workflow transitions',
  );
}