WC_Gateway_Paypal::get_jetpack_connection_manager
Get the Jetpack connection manager.
Method of the class: WC_Gateway_Paypal{}
No Hooks.
Returns
Jetpack_Connection_Manager.
Usage
$WC_Gateway_Paypal = new WC_Gateway_Paypal(); $WC_Gateway_Paypal->get_jetpack_connection_manager();
WC_Gateway_Paypal::get_jetpack_connection_manager() WC Gateway Paypal::get jetpack connection manager code WC 10.7.0
public function get_jetpack_connection_manager() {
if ( ! $this->jetpack_connection_manager ) {
$this->jetpack_connection_manager = new Jetpack_Connection_Manager( 'woocommerce' );
}
return $this->jetpack_connection_manager;
}