You are here

public function ExampleWebformHandler::confirmForm in Webform 6.x

Same name and namespace in other branches
  1. 8.5 modules/webform_example_handler/src/Plugin/WebformHandler/ExampleWebformHandler.php \Drupal\webform_example_handler\Plugin\WebformHandler\ExampleWebformHandler::confirmForm()

Confirm webform submission form.

Parameters

array $form: An associative array containing the structure of the form.

\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.

\Drupal\webform\WebformSubmissionInterface $webform_submission: A webform submission.

Overrides WebformHandlerBase::confirmForm

File

modules/webform_example_handler/src/Plugin/WebformHandler/ExampleWebformHandler.php, line 136

Class

ExampleWebformHandler
Webform example handler.

Namespace

Drupal\webform_example_handler\Plugin\WebformHandler

Code

public function confirmForm(array &$form, FormStateInterface $form_state, WebformSubmissionInterface $webform_submission) {
  $message = $this->configuration['message'];
  $message = $this
    ->replaceTokens($message, $this
    ->getWebformSubmission());
  $this
    ->messenger()
    ->addStatus(Markup::create(Xss::filter($message)), FALSE);
  $this
    ->debug(__FUNCTION__);
}