You are here

function _batch_test_nested_drupal_form_submit_callback in Drupal 7

Same name and namespace in other branches
  1. 8 core/modules/system/tests/modules/batch_test/batch_test.module \_batch_test_nested_drupal_form_submit_callback()
  2. 9 core/modules/system/tests/modules/batch_test/batch_test.module \_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 modules/simpletest/tests/batch_test.module
Menu callback: programmatically submits a form within a batch.

File

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