function form_test_wrapper_callback_wrapper

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

Form wrapper for form_test_wrapper_callback_form().

1 string reference to 'form_test_wrapper_callback_wrapper'
form_test_wrapper_callback in drupal-7.x/modules/simpletest/tests/form_test.module
Menu callback; Invokes a form builder function with a wrapper callback.

File

drupal-7.x/modules/simpletest/tests/form_test.module, line 892
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;
}