You are here

function date_locale_format_form_language_submit in Date 6.2

Submit handler for choosing a language on the date_locale_format_form.

Parameters

$form: Array, containing the form structure.

&$form_state: The 'rebuild' key inside $form_state['rebuild'] structure, overrides the 'redirect' key: when it is set to TRUE, the form will be rebuilt from scratch and displayed on screen.

1 string reference to 'date_locale_format_form_language_submit'
date_locale_format_form in date_locale/date_locale.module
Display list of enabled languages to configure date formats for.

File

date_locale/date_locale.module, line 233
Enable different locales to have their own date formats.

Code

function date_locale_format_form_language_submit($form, &$form_state) {
  $form_state['rebuild'] = TRUE;
  $form_state['storage']['langcode'] = $form_state['values']['langcode'];
}