You are here

function workflow_admin_ui_help in Workflow 7

Same name and namespace in other branches
  1. 6.2 workflow_admin_ui/workflow_admin_ui.module \workflow_admin_ui_help()
  2. 6 workflow_admin_ui/workflow_admin_ui.module \workflow_admin_ui_help()
  3. 7.2 workflow_admin_ui/workflow_admin_ui.module \workflow_admin_ui_help()

Implements hook_help().

File

workflow_admin_ui/workflow_admin_ui.module, line 16
Provides administrative UI for workflow. Why it's own module? Lower code footprint and better performance. Additional credit 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_help($path, $arg) {
  switch ($path) {
    case 'admin/config/workflow/workflow/edit/%':
      return t('You are currently viewing the possible transitions to and from workflow states. The state is shown in the left column; ' . 'the state to be moved to is to the right. For each transition, check the box next to the role(s) that may initiate the transition. ' . 'For example, if only the "production editor" role may move a node from Review state to the Published state, check the box next to ' . '"production editor". The author role is built in and refers to the user who authored the node.');
    case 'admin/config/workflow/workflow/add':
      return t('To get started, provide a name for your workflow. This name will be used as a label when the workflow status is shown ' . 'during node editing.');
  }
}