You are here

function _webform_help_textarea in Webform 5.2

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

Module specific instance of hook_help

File

components/textarea.inc, line 142
Webform module textarea component.

Code

function _webform_help_textarea($section) {
  switch ($section) {
    case 'admin/settings/webform#textarea_description':
      return t('A large text area that allows for multiple lines of input.');
  }
}