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 drupal-7.x/
modules/ simpletest/ tests/ form_test.module - Implements hook_menu().
Archivo
- drupal-7.x/
modules/ simpletest/ tests/ form_test.module, line 881 - Helper module for the form API tests.
Código
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);
}