You are here

function _webform_help_hidden in Webform 5.2

Same name and namespace in other branches
  1. 5 components/hidden.inc \_webform_help_hidden()
  2. 6.2 components/hidden.inc \_webform_help_hidden()

Module specific instance of hook_help

File

components/hidden.inc, line 109
Webform module hidden component.

Code

function _webform_help_hidden($section) {
  switch ($section) {
    case 'admin/settings/webform#hidden_description':
      return t('A field which is not visible to the user, but is recorded with the submission.');
  }
}