You are here

public function PaymentMethodPluginInterface::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.

1 method overrides PaymentMethodPluginInterface::orderEditProcess()
PaymentMethodPluginBase::orderEditProcess in payment/uc_payment/src/PaymentMethodPluginBase.php
Called when an order is being submitted after being edited.

File

payment/uc_payment/src/PaymentMethodPluginInterface.php, line 111

Class

PaymentMethodPluginInterface
Defines an interface for payment method plugins.

Namespace

Drupal\uc_payment

Code

public function orderEditProcess(OrderInterface $order, array $form, FormStateInterface $form_state);