You are here

function external_help in External New Tab 6

Same name and namespace in other branches
  1. 8 external.module \external_help()
  2. 7 external.module \external_help()

Implementation of hook_help(). Display help and module information.

File

./external.module, line 14

Code

function external_help($path, $arg) {
  $output = '';
  switch ($path) {
    case "admin/help#external":
      $output = '<p>' . t("Opens external links and PDFs in new tabs with jQuery") . '</p>';
      break;
  }
  return $output;
}