theme_locale_translation_filters

Versions
7
theme_locale_translation_filters($variables)

Theme locale translation filter selector.

Related topics

Code

modules/locale/locale.module, line 908

<?php
function theme_locale_translation_filters($variables) {
  $form = $variables['form'];
  $output = '';

  foreach (element_children($form['status']) as $key) {
    $output .= drupal_render($form['status'][$key]);
  }
  $output .= '<div id="locale-translation-buttons">' . drupal_render($form['buttons']) . '</div>';
  return $output;
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.