You are here

function webform2pdf_help in Webform2PDF 6.2

Same name and namespace in other branches
  1. 6 webform2pdf.module \webform2pdf_help()
  2. 7.4 webform2pdf.module \webform2pdf_help()
  3. 7.3 webform2pdf.module \webform2pdf_help()

Implementation of hook_help()

File

./webform2pdf.module, line 118

Code

function webform2pdf_help($path, $arg) {
  global $base_url;
  switch ($path) {
    case 'node/%/webform-results/downloadpdf':
      return $output = '<p>' . t('A PDF document will be generated from the marked results.') . '</p>';
      break;
  }
}