do not display dcc icons in gateway title in the admin

This commit is contained in:
David Remer 2020-08-21 09:12:16 +03:00
parent 0905f30465
commit ea785fa2f2

View file

@ -98,6 +98,9 @@ class CreditCardGateway extends PayPalGateway
}
public function get_title() {
if (is_admin()) {
return parent::get_title();
}
$title = parent::get_title();
$icons = $this->config->has('card_icons') ? (array) $this->config->get('card_icons') : [];
if (empty($icons)) {