public function CheckoutPaneBase::submitConfigurationForm in Commerce Core 8.2
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
6 calls to CheckoutPaneBase::submitConfigurationForm()
- CompletionMessage::submitConfigurationForm in modules/
checkout/ src/ Plugin/ Commerce/ CheckoutPane/ CompletionMessage.php - Form submission handler.
- ContactInformation::submitConfigurationForm in modules/
checkout/ src/ Plugin/ Commerce/ CheckoutPane/ ContactInformation.php - Form submission handler.
- CouponRedemption::submitConfigurationForm in modules/
promotion/ src/ Plugin/ Commerce/ CheckoutPane/ CouponRedemption.php - Form submission handler.
- Login::submitConfigurationForm in modules/
checkout/ src/ Plugin/ Commerce/ CheckoutPane/ Login.php - Form submission handler.
- OrderSummary::submitConfigurationForm in modules/
checkout/ src/ Plugin/ Commerce/ CheckoutPane/ OrderSummary.php - Form submission handler.
6 methods override CheckoutPaneBase::submitConfigurationForm()
- CompletionMessage::submitConfigurationForm in modules/
checkout/ src/ Plugin/ Commerce/ CheckoutPane/ CompletionMessage.php - Form submission handler.
- ContactInformation::submitConfigurationForm in modules/
checkout/ src/ Plugin/ Commerce/ CheckoutPane/ ContactInformation.php - Form submission handler.
- CouponRedemption::submitConfigurationForm in modules/
promotion/ src/ Plugin/ Commerce/ CheckoutPane/ CouponRedemption.php - Form submission handler.
- Login::submitConfigurationForm in modules/
checkout/ src/ Plugin/ Commerce/ CheckoutPane/ Login.php - Form submission handler.
- OrderSummary::submitConfigurationForm in modules/
checkout/ src/ Plugin/ Commerce/ CheckoutPane/ OrderSummary.php - Form submission handler.
File
- modules/
checkout/ src/ Plugin/ Commerce/ CheckoutPane/ CheckoutPaneBase.php, line 139
Class
- CheckoutPaneBase
- Provides the base checkout pane class.
Namespace
Drupal\commerce_checkout\Plugin\Commerce\CheckoutPaneCode
public function submitConfigurationForm(array &$form, FormStateInterface $form_state) {
}