WC_Gateway_Paypal::get_jetpack_connection_managerpublicWC 1.0

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() 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;
}