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