You are here

function external_help in External New Tab 7

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

Implements hook_help().

File

./external.module, line 20

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