You are here

function _webform_help_file in Webform 5.2

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

Module specific instance of hook_help().

File

components/file.inc, line 451
Webform module file component.

Code

function _webform_help_file($section) {
  switch ($section) {
    case 'admin/settings/webform#file_description':
      return t('Allow users to submit files of the configured types.');
  }
}