function form_test_wrapper_callback

7.x form_test.module form_test_wrapper_callback($form_id)

Menu callback; Invokes a form builder function with a wrapper callback.

1 string reference to 'form_test_wrapper_callback'
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 881
Helper module for the form API tests.

Code

function form_test_wrapper_callback($form_id) {
  $form_state = array(
    'build_info' => array('args' => array()),
    'wrapper_callback' => 'form_test_wrapper_callback_wrapper',
  );
  return drupal_build_form($form_id, $form_state);
}