You are here

function workflow_fields_help in Workflow Fields 7

Same name and namespace in other branches
  1. 5 workflow_fields.module \workflow_fields_help()
  2. 6 workflow_fields.module \workflow_fields_help()

Implements hook_help().

File

./workflow_fields.module, line 16
This module adds to workflow.module the ability to specify, for each state, which node fields should be visible and/or editable. It is a useful feature when workflows demand that certain information be hidden or read-only to certain roles.

Code

function workflow_fields_help($section) {
  switch ($section) {
    case 'admin/modules#description':
      return t('Add per-state field settings to workflows.');
  }
}