You are here

function _webform_help_textfield in Webform 6.2

Same name and namespace in other branches
  1. 5.2 components/textfield.inc \_webform_help_textfield()
  2. 5 components/textfield.inc \_webform_help_textfield()

Module specific instance of hook_help().

File

components/textfield.inc, line 191
Webform module textfield component.

Code

function _webform_help_textfield($section) {
  switch ($section) {
    case 'admin/settings/webform#textfield_description':
      return t('Basic textfield type.');
  }
}