1 form_test.module form_test_wrapper_callback_wrapper($form, &$form_state)

Form wrapper for form_test_wrapper_callback_form().

File

core/modules/simpletest/tests/form_test.module, line 1148
Helper module for the Form API tests.

Code

function form_test_wrapper_callback_wrapper($form, &$form_state) {
  $form['wrapper'] = array('#markup' => 'Form wrapper callback element output.');
  return $form;
}