You are here

function shorten_help in Shorten URLs 8

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

Implements hook_help().

File

./shorten.module, line 13
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;
}