WC_Gateway_Paypal_Request::get_paypal_order_details
Deprecated since 0.5.0. It is no longer supported and may be removed in future releases. Use
Automattic\WooCommerce\Gateways\PayPal\Request::get_paypal_order_details(). This method will be removed in 11.0.0 instead.Get PayPal order details.
Method of the class: WC_Gateway_Paypal_Request{}
No Hooks.
Returns
Array.
Usage
$WC_Gateway_Paypal_Request = new WC_Gateway_Paypal_Request(); $WC_Gateway_Paypal_Request->get_paypal_order_details( $paypal_order_id );
- $paypal_order_id(string) (required)
- The ID of the PayPal order.
Changelog
| Deprecated since 10.5.0 | Use Automattic\WooCommerce\Gateways\PayPal\Request::get_paypal_order_details() instead. This method will be removed in 11.0.0. |
WC_Gateway_Paypal_Request::get_paypal_order_details() WC Gateway Paypal Request::get paypal order details code WC 10.5.0
public function get_paypal_order_details( $paypal_order_id ) {
wc_deprecated_function( __METHOD__, '10.5.0', 'Automattic\WooCommerce\Gateways\PayPal\Request::get_paypal_order_details()' );
if ( ! $this->request ) {
$this->request = new PayPalRequest( $this->gateway );
}
return $this->request->get_paypal_order_details( $paypal_order_id );
}