1 taxonomy.admin.inc term_overview_form_language_filter_submit($form, &$form_state)

Submit handler for term_overview_form().

Filters the displayed form to a particular language.

File

core/modules/taxonomy/taxonomy.admin.inc, line 656
Admin page callbacks for the Taxonomy module.

Code

function term_overview_form_language_filter_submit($form, &$form_state) {
  $query['langcode_term'] = $form_state['values']['langcode_term'];
  if (isset($_GET['destination'])) {
    $query['destination'] = $_GET['destination'];
  }
  backdrop_goto($_GET['q'], array('query' => $query));
}