public function PaymentMethodPluginBase::orderView in Ubercart 8.4
Called when an order is being viewed by an administrator.
Parameters
\Drupal\uc_order\OrderInterface $order: The order that is being viewed.
Return value
array A render array.
Overrides PaymentMethodPluginInterface::orderView
1 call to PaymentMethodPluginBase::orderView()
- PaymentMethodPluginBase::customerView in payment/
uc_payment/ src/ PaymentMethodPluginBase.php - Called when an order is being viewed by a customer.
6 methods override PaymentMethodPluginBase::orderView()
- CashOnDelivery::orderView in payment/
uc_payment_pack/ src/ Plugin/ Ubercart/ PaymentMethod/ CashOnDelivery.php - Called when an order is being viewed by an administrator.
- Check::orderView in payment/
uc_payment_pack/ src/ Plugin/ Ubercart/ PaymentMethod/ Check.php - Called when an order is being viewed by an administrator.
- CreditCardPaymentMethodBase::orderView in payment/
uc_credit/ src/ CreditCardPaymentMethodBase.php - Called when an order is being viewed by an administrator.
- Other::orderView in payment/
uc_payment_pack/ src/ Plugin/ Ubercart/ PaymentMethod/ Other.php - Called when an order is being viewed by an administrator.
- PayPalExpressCheckout::orderView in payment/
uc_paypal/ src/ Plugin/ Ubercart/ PaymentMethod/ PayPalExpressCheckout.php - Called when an order is being viewed by an administrator.
File
- payment/
uc_payment/ src/ PaymentMethodPluginBase.php, line 171
Class
- PaymentMethodPluginBase
- Defines a base payment method plugin implementation.
Namespace
Drupal\uc_paymentCode
public function orderView(OrderInterface $order) {
return [];
}