WC_Gateway_Paypal_Notices::add_paypal_noticespublicWC 10.4.0

Deprecated since 0.5.0. It is no longer supported and may be removed in future releases. Use Automattic\WooCommerce\Gateways\PayPal\Notices::add_paypal_notices() instead.

Add PayPal Standard notices.

Method of the class: WC_Gateway_Paypal_Notices{}

No Hooks.

Returns

null. Nothing (null).

Usage

$WC_Gateway_Paypal_Notices = new WC_Gateway_Paypal_Notices();
$WC_Gateway_Paypal_Notices->add_paypal_notices();

Changelog

Since 10.4.0 Introduced.
Deprecated since 10.5.0 Use Automattic\WooCommerce\Gateways\PayPal\Notices::add_paypal_notices() instead.

WC_Gateway_Paypal_Notices::add_paypal_notices() code WC 10.6.2

public function add_paypal_notices() {
	wc_deprecated_function( __METHOD__, '10.5.0', 'Automattic\WooCommerce\Gateways\PayPal\Notices::add_paypal_notices()' );
	$this->notices->add_paypal_notices();
}