You are here

public function PaymentMethodPluginBase::orderEditDetails in Ubercart 8.4

Called when an order is being edited with this payment method.

Parameters

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

Return value

array A form array.

Overrides PaymentMethodPluginInterface::orderEditDetails

3 methods override PaymentMethodPluginBase::orderEditDetails()
CashOnDelivery::orderEditDetails in payment/uc_payment_pack/src/Plugin/Ubercart/PaymentMethod/CashOnDelivery.php
Called when an order is being edited with this payment method.
CreditCardPaymentMethodBase::orderEditDetails in payment/uc_credit/src/CreditCardPaymentMethodBase.php
Called when an order is being edited with this payment method.
Other::orderEditDetails in payment/uc_payment_pack/src/Plugin/Ubercart/PaymentMethod/Other.php
Called when an order is being edited with this payment method.

File

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

Class

PaymentMethodPluginBase
Defines a base payment method plugin implementation.

Namespace

Drupal\uc_payment

Code

public function orderEditDetails(OrderInterface $order) {
  return [];
}