public function FlowPushConfirmation::submitForm in CMS Content Sync 8
Same name and namespace in other branches
- 2.1.x src/Form/FlowPushConfirmation.php \Drupal\cms_content_sync\Form\FlowPushConfirmation::submitForm()
- 2.0.x src/Form/FlowPushConfirmation.php \Drupal\cms_content_sync\Form\FlowPushConfirmation::submitForm()
Form submission handler.
Parameters
array $form: An associative array containing the structure of the form.
\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.
Overrides FormInterface::submitForm
File
- src/
Form/ FlowPushConfirmation.php, line 149
Class
- FlowPushConfirmation
- Provides a pool pull all confirmation page.
Namespace
Drupal\cms_content_sync\FormCode
public function submitForm(array &$form, FormStateInterface $form_state) {
$form_state
->setRedirect('entity.cms_content_sync_flow.push', [
'cms_content_sync_flow' => $this->flow
->id(),
'push_mode' => $form_state
->getValue('push_mode'),
]);
}