You are here

function workflowfield_help in Workflow 7.2

Implements hook_help().

File

workflow_field/workflowfield.module, line 17
Supports workflows made up of arbitrary states.

Code

function workflowfield_help($path, $arg) {
  switch ($path) {
    case WORKFLOW_ADMIN_UI_PATH:
      return t('This page allows you to maintain Workflows. Once a workflow is
        created, you can maintain your entity type and add a Field of type
        \'Workflow\'.');
  }
}