function shorten_help in Shorten URLs 6
Same name and namespace in other branches
- 8.2 shorten.module \shorten_help()
- 8 shorten.module \shorten_help()
- 7.2 shorten.module \shorten_help()
- 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;
}