function theming_example_text_form_submit in Examples for Developers 7
Submit handler for the text form.
Parameters
array $form: Form API form array.
array $form_state: Form API form state array.
Related topics
File
- theming_example/
theming_example.module, line 271 - Explains how a module declares theme functions, preprocess functions, and templates.
Code
function theming_example_text_form_submit($form, &$form_state) {
drupal_set_message(t('You entered %input', array(
'%input' => $form_state['values']['text'],
)));
}