1 theming_example.module theming_example_select_form_submit($form, &$form_state)

Submit handler for the select form.

Parameters

array $form: Form API form array.

array $form_state: Form API form state array.

Related topics

File

modules/examples/theming_example/theming_example.module, line 230
Hook implementations for the Theming Example module.

Code

function theming_example_select_form_submit($form, &$form_state) {
  backdrop_set_message(t('You chose %input', array('%input' => $form_state['values']['choice'])));
}