You are here

function _webform_help_file in Webform 5

Same name and namespace in other branches
  1. 5.2 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 343

Code

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