public function PaymentMethodPluginBase::cartReview in Ubercart 8.4
Returns the payment method review details.
Parameters
\Drupal\uc_order\OrderInterface $order: The order that is being processed.
Return value
array
Overrides PaymentMethodPluginInterface::cartReview
3 methods override PaymentMethodPluginBase::cartReview()
- CashOnDelivery::cartReview in payment/
uc_payment_pack/ src/ Plugin/ Ubercart/ PaymentMethod/ CashOnDelivery.php - Returns the payment method review details.
- Check::cartReview in payment/
uc_payment_pack/ src/ Plugin/ Ubercart/ PaymentMethod/ Check.php - Returns the payment method review details.
- CreditCardPaymentMethodBase::cartReview in payment/
uc_credit/ src/ CreditCardPaymentMethodBase.php - Returns the payment method review details.
File
- payment/
uc_payment/ src/ PaymentMethodPluginBase.php, line 126
Class
- PaymentMethodPluginBase
- Defines a base payment method plugin implementation.
Namespace
Drupal\uc_paymentCode
public function cartReview(OrderInterface $order) {
return [];
}