You are here

function _webform_help_markup in Webform 5

Same name and namespace in other branches
  1. 5.2 components/markup.inc \_webform_help_markup()
  2. 6.2 components/markup.inc \_webform_help_markup()

Module specific instance of hook_help().

File

components/markup.inc, line 77

Code

function _webform_help_markup($section) {
  switch ($section) {
    case 'admin/settings/webform#markup_description':
      $output = t("Presents a markup area of text. Does not render a field.");
      break;
  }
  return $output;
}