function form_test_wrapper_callback_form

7.x form_test.module form_test_wrapper_callback_form($form, &$form_state)

Form builder for form wrapper callback test.

1 string reference to 'form_test_wrapper_callback_form'
form_test_menu in drupal-7.x/modules/simpletest/tests/form_test.module
Implements hook_menu().

File

drupal-7.x/modules/simpletest/tests/form_test.module, line 900
Helper module for the form API tests.

Code

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