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/core/modules/system/tests/modules/batch_test/batch_test.module
Menu callback: Submits a form within a batch programmatically.

File

drupal/core/modules/system/tests/modules/batch_test/batch_test.module, line 303
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);
}