You are here

function _webform_help_pagebreak in Webform 5

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

Module specific instance of hook_help

File

components/pagebreak.inc, line 36

Code

function _webform_help_pagebreak($section) {
  switch ($section) {
    case 'admin/settings/webform#pagebreak_description':
      $output = t("Break up a multi-page form.");
      break;
  }
  return $output;
}