You are here

function workflow_views_perm in Workflow 6.2

Same name and namespace in other branches
  1. 6 workflow_views/workflow_views.module \workflow_views_perm()

Implements hook_permission().

File

workflow_views/workflow_views.module, line 14
Provide views integration for workflows. Why it's own module? Some sites have views some don't, all prefer a lower code footprint and better performance.

Code

function workflow_views_perm() {
  return array(
    'access workflow summary views',
  );
}