You are here

function lingotek_help in Lingotek Translation 7.3

Same name and namespace in other branches
  1. 6 lingotek.module \lingotek_help()
  2. 7.7 lingotek.module \lingotek_help()
  3. 7.2 lingotek.module \lingotek_help()
  4. 7.4 lingotek.module \lingotek_help()
  5. 7.5 lingotek.module \lingotek_help()
  6. 7.6 lingotek.module \lingotek_help()

File

./lingotek.module, line 989

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;
  }
}