You are here

function external_help in External New Tab 8

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

Implements hook_help().

File

./external.module, line 7

Code

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