You are here

public function Check::submitConfigurationForm in Ubercart 8.4

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 PaymentMethodPluginBase::submitConfigurationForm

File

payment/uc_payment_pack/src/Plugin/Ubercart/PaymentMethod/Check.php, line 65

Class

Check
Defines the check payment method.

Namespace

Drupal\uc_payment_pack\Plugin\Ubercart\PaymentMethod

Code

public function submitConfigurationForm(array &$form, FormStateInterface $form_state) {
  $this->configuration['policy'] = $form_state
    ->getValue('policy');
  $this->configuration['name'] = $form_state
    ->getValue('name');
  $this->configuration['address'] = $form_state
    ->getValue('address');
}