function extlink_help in External Links 7
Same name and namespace in other branches
- 8 extlink.module \extlink_help()
Implements hook_help().
File
- ./
extlink.module, line 11 - External Link module.
Code
function extlink_help($path, $arg) {
switch ($path) {
case 'admin/help#extlink':
$output = '';
$output .= '<p>' . t('External Links is used to differentiate between internal and external links. Using jQuery, it will find all external links on a page and add an external icon indicating it will take you offsite or a mail icon for mailto links.') . '</p>';
return $output;
}
}