You are here

public function MaestroWebformHandler::submitConfigurationForm in Maestro 3.x

Same name and namespace in other branches
  1. 8.2 modules/maestro_webform/src/Plugin/WebformHandler/MaestroWebformHandler.php \Drupal\maestro_webform\Plugin\WebformHandler\MaestroWebformHandler::submitConfigurationForm()

Form submission handler.

Parameters

array $form: An associative array containing the structure of the plugin form as built by static::buildConfigurationForm().

\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form. Calling code should pass on a subform state created through \Drupal\Core\Form\SubformState::createForSubform().

Overrides WebformHandlerBase::submitConfigurationForm

File

modules/maestro_webform/src/Plugin/WebformHandler/MaestroWebformHandler.php, line 168

Class

MaestroWebformHandler
Launches a Maestro workflow with a Webform submission.

Namespace

Drupal\maestro_webform\Plugin\WebformHandler

Code

public function submitConfigurationForm(array &$form, FormStateInterface $form_state) {
  parent::submitConfigurationForm($form, $form_state);
  $values = $form_state
    ->getValues();
  foreach ($this->configuration as $name => $value) {
    if (isset($values[$name])) {
      $this->configuration[$name] = $values[$name];
    }
  }
}