public function PaymentMethodPluginBase::cartReviewTitle in Ubercart 8.4
Returns the payment method title to be used on the checkout review page.
Return value
string The payment method title.
Overrides PaymentMethodPluginInterface::cartReviewTitle
2 methods override PaymentMethodPluginBase::cartReviewTitle()
- CreditCardPaymentMethodBase::cartReviewTitle in payment/
uc_credit/ src/ CreditCardPaymentMethodBase.php - Returns the payment method title to be used on the checkout review page.
- TwoCheckout::cartReviewTitle in payment/
uc_2checkout/ src/ Plugin/ Ubercart/ PaymentMethod/ TwoCheckout.php - Returns the payment method title to be used on the checkout review page.
File
- payment/
uc_payment/ src/ PaymentMethodPluginBase.php, line 119
Class
- PaymentMethodPluginBase
- Defines a base payment method plugin implementation.
Namespace
Drupal\uc_paymentCode
public function cartReviewTitle() {
return $this->pluginDefinition['name'];
}