function _batch_test_nested_drupal_form_submit_callback

Batch operation: submits form_test_mock_form using drupal_form_submit().

1 string reference to '_batch_test_nested_drupal_form_submit_callback'
batch_test_nested_drupal_form_submit in drupal/modules/simpletest/tests/batch_test.module
Menu callback: programmatically submits a form within a batch.

File

drupal/modules/simpletest/tests/batch_test.module, line 282
Helper module for the Batch API tests.

Code

function _batch_test_nested_drupal_form_submit_callback($value) {
  $state['values']['test_value'] = $value;
  drupal_form_submit('batch_test_mock_form', $state);
}