Automattic\WooCommerce\Gateways\PayPal

Notices::has_account_restriction_flagprivateWC 10.5.0

Check if there's a flag indicating PayPal account restriction.

Метод класса: Notices{}

Хуков нет.

Возвращает

true|false.

Использование

// private - только в коде основоного (родительского) класса
$result = $this->has_account_restriction_flag(): bool;

Список изменений

С версии 10.5.0 Введена.

Код Notices::has_account_restriction_flag() WC 11.0.1

private function has_account_restriction_flag(): bool {
	return 'yes' === get_option( 'woocommerce_paypal_account_restricted_status', 'no' );
}