public function BatchTestController::testNestedDrupalFormSubmit in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/system/tests/modules/batch_test/src/Controller/BatchTestController.php \Drupal\batch_test\Controller\BatchTestController::testNestedDrupalFormSubmit()
Submits a form within a batch programmatically.
Parameters
int $value: Some value passed to a custom batch callback.
Return value
\Symfony\Component\HttpFoundation\RedirectResponse|null A redirect response if the batch is progressive. No return value otherwise.
1 string reference to 'BatchTestController::testNestedDrupalFormSubmit'
- batch_test.routing.yml in core/
modules/ system/ tests/ modules/ batch_test/ batch_test.routing.yml - core/modules/system/tests/modules/batch_test/batch_test.routing.yml
File
- core/
modules/ system/ tests/ modules/ batch_test/ src/ Controller/ BatchTestController.php, line 52 - Contains \Drupal\batch_test\Controller\BatchTestController.
Class
- BatchTestController
- Controller routines for batch tests.
Namespace
Drupal\batch_test\ControllerCode
public function testNestedDrupalFormSubmit($value = 1) {
// Set the batch and process it.
$batch['operations'] = array(
array(
'_batch_test_nested_drupal_form_submit_callback',
array(
$value,
),
),
);
batch_set($batch);
return batch_process('batch-test/redirect');
}