function gtranslate_help in Translate Drupal with GTranslate 7
Same name and namespace in other branches
- 8 gtranslate.module \gtranslate_help()
- 6 gtranslate.module \gtranslate_help()
File
- ./
gtranslate.module, line 2
Code
function gtranslate_help($path, $arg) {
$output = '';
switch ($path) {
case 'admin/help#gtranslate':
$output = '<p>' . t("Uses Google power to translate your website.") . ' Visit <a href="https://gtranslate.io/?xyz=1002" target="_blank">gtranslate.io</a></p>';
break;
}
return $output;
}