function form_test_wrapper_callback

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

1 string reference to 'form_test_wrapper_callback'
form_test_menu in modules/simpletest/tests/form_test.module
Implements hook_menu().

File

modules/simpletest/tests/form_test.module, line 1042

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);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.