function lingotek_help in Lingotek Translation 7.4
Same name and namespace in other branches
- 6 lingotek.module \lingotek_help()
- 7.7 lingotek.module \lingotek_help()
- 7.2 lingotek.module \lingotek_help()
- 7.3 lingotek.module \lingotek_help()
- 7.5 lingotek.module \lingotek_help()
- 7.6 lingotek.module \lingotek_help()
File
- ./
lingotek.module, line 1412
Code
function lingotek_help($path, $arg) {
// contact
// links to module dependencies (e.g., title)
switch ($path) {
case 'admin/help#lingotek':
$output = '';
$output .= '<h2>' . t('Lingotek Translation - Help') . '</h2>';
$support = lingotek_support_footer();
$output .= drupal_render($support);
return $output;
}
}