You are here

function shorten_help in Shorten URLs 6

Same name and namespace in other branches
  1. 8.2 shorten.module \shorten_help()
  2. 8 shorten.module \shorten_help()
  3. 7.2 shorten.module \shorten_help()
  4. 7 shorten.module \shorten_help()

Implementation of hook_help().

File

./shorten.module, line 11
Shortens URLs via external services.

Code

function shorten_help($path, $arg) {
  $output = '';
  switch ($path) {
    case "admin/help#shorten":
      $output = '<p>' . t("This module shortens URLs.") . '</p>';
      break;
  }
  return $output;
}