You are here

function webform2pdf_help in Webform2PDF 7.4

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

Implements hook_help().

File

./webform2pdf.module, line 130

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;
  }
}