You are here

function _batch_test_nested_drupal_form_submit_callback in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/system/tests/modules/batch_test/batch_test.module \_batch_test_nested_drupal_form_submit_callback()

Batch operation: Submits form_test_mock_form().

1 string reference to '_batch_test_nested_drupal_form_submit_callback'
BatchTestController::testNestedDrupalFormSubmit in core/modules/system/tests/modules/batch_test/src/Controller/BatchTestController.php
Submits a form within a batch programmatically.

File

core/modules/system/tests/modules/batch_test/batch_test.module, line 13
Helper module for the Batch API tests.

Code

function _batch_test_nested_drupal_form_submit_callback($value) {
  $form_state = (new FormState())
    ->setValue('test_value', $value);
  \Drupal::formBuilder()
    ->submitForm('Drupal\\batch_test\\Form\\BatchTestMockForm', $form_state);
}