function form_test_wrapper_callback_form

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().

Archivo

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

Código

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