You are here

function workflow_admin_ui_perm in Workflow 6

Same name and namespace in other branches
  1. 6.2 workflow_admin_ui/workflow_admin_ui.module \workflow_admin_ui_perm()

Implementation of hook_perm().

File

workflow_admin_ui/workflow_admin_ui.module, line 31
Provides administrative UI for workflow. Why it's own module? Lower code footprint and better performance. Additional creadit to gcassie ( http://drupal.org/user/80260 ) for the initial push to split UI out of core workflow. We're moving…

Code

function workflow_admin_ui_perm() {
  return array(
    'administer workflow',
  );
}