You are here

public function PaymentMethodPluginBase::orderEditProcess in Ubercart 8.4

Called when an order is being submitted after being edited.

Parameters

\Drupal\uc_order\OrderInterface $order: The order that is being edited.

array $form: The form array.

\Drupal\Core\Form\FormStateInterface $form_state: The form state array.

Return value

array An array of changes to log against the order.

Overrides PaymentMethodPluginInterface::orderEditProcess

1 method overrides PaymentMethodPluginBase::orderEditProcess()
CashOnDelivery::orderEditProcess in payment/uc_payment_pack/src/Plugin/Ubercart/PaymentMethod/CashOnDelivery.php
Called when an order is being submitted after being edited.

File

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

Class

PaymentMethodPluginBase
Defines a base payment method plugin implementation.

Namespace

Drupal\uc_payment

Code

public function orderEditProcess(OrderInterface $order, array $form, FormStateInterface $form_state) {
  return [];
}