You are here

function workflow_fields_help in Workflow Fields 6

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

Implementation of hook_help().

File

./workflow_fields.module, line 15
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 CCK field settings to workflows. <em>Note: Requires both workflow.module and content.module</em>.');
  }
}