WC_Gateway_Paypal_Request::fetch_paypal_client_id
Deprecated since 0.5.0. It is no longer supported and may be removed in future releases. Use
Automattic\WooCommerce\Gateways\PayPal\Request::fetch_paypal_client_id(). This method will be removed in 11.0.0 instead.Fetch the PayPal client-id from the Transact platform.
Method of the class: WC_Gateway_Paypal_Request{}
No Hooks.
Returns
String|null. The PayPal client-id, or null if the request fails.
Usage
$WC_Gateway_Paypal_Request = new WC_Gateway_Paypal_Request(); $WC_Gateway_Paypal_Request->fetch_paypal_client_id();
Changelog
| Deprecated since 10.5.0 | Use Automattic\WooCommerce\Gateways\PayPal\Request::fetch_paypal_client_id() instead. This method will be removed in 11.0.0. |
WC_Gateway_Paypal_Request::fetch_paypal_client_id() WC Gateway Paypal Request::fetch paypal client id code WC 10.6.2
public function fetch_paypal_client_id() {
wc_deprecated_function( __METHOD__, '10.5.0', 'Automattic\WooCommerce\Gateways\PayPal\Request::fetch_paypal_client_id()' );
if ( ! $this->request ) {
$this->request = new PayPalRequest( $this->gateway );
}
return $this->request->fetch_paypal_client_id();
}