You are here

function theme_translation_filter_form_layout in Internationalization 5.3

1 theme call to theme_translation_filter_form_layout()
translation_filter_form in translation/translation.module
Returns form for translation administration filters.

File

translation/translation.module, line 660

Code

function theme_translation_filter_form_layout($form) {
  $output = '<table><tr>';
  $output .= '<td>' . drupal_render($form['source_language']) . '</td>';
  $output .= '<td>' . drupal_render($form['translation_language']) . '</td>';
  $output .= '</tr><tr>';
  $output .= '<td>' . drupal_render($form['source_status']) . '</td>';
  $output .= '<td>' . drupal_render($form['translation_status']) . '</td>';
  $output .= '</tr><table>';
  $output .= drupal_render($form);
  return $output;
}