You are here

public function PaymentMethodPluginBase::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 PluginFormInterface::submitConfigurationForm

5 methods override PaymentMethodPluginBase::submitConfigurationForm()
CashOnDelivery::submitConfigurationForm in payment/uc_payment_pack/src/Plugin/Ubercart/PaymentMethod/CashOnDelivery.php
Form submission handler.
Check::submitConfigurationForm in payment/uc_payment_pack/src/Plugin/Ubercart/PaymentMethod/Check.php
Form submission handler.
CreditCardPaymentMethodBase::submitConfigurationForm in payment/uc_credit/src/CreditCardPaymentMethodBase.php
Form submission handler.
PayPalPaymentMethodPluginBase::submitConfigurationForm in payment/uc_paypal/src/Plugin/Ubercart/PaymentMethod/PayPalPaymentMethodPluginBase.php
Form submission handler.
TwoCheckout::submitConfigurationForm in payment/uc_2checkout/src/Plugin/Ubercart/PaymentMethod/TwoCheckout.php
Form submission handler.

File

payment/uc_payment/src/PaymentMethodPluginBase.php, line 99

Class

PaymentMethodPluginBase
Defines a base payment method plugin implementation.

Namespace

Drupal\uc_payment

Code

public function submitConfigurationForm(array &$form, FormStateInterface $form_state) {
}