You are here

public function CreditCardPaymentMethodBase::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 PaymentMethodPluginBase::cartReviewTitle

File

payment/uc_credit/src/CreditCardPaymentMethodBase.php, line 336

Class

CreditCardPaymentMethodBase
Defines a base credit card payment method plugin implementation.

Namespace

Drupal\uc_credit

Code

public function cartReviewTitle() {
  return $this
    ->t('Credit card');
}