Automattic\WooCommerce\Internal\Admin\Settings\PaymentProviders

PseudoWCPaymentGateway::get_connection_urlpublicWC 1.0

Get the gateway onboarding start/continue URL.

Method of the class: PseudoWCPaymentGateway{}

No Hooks.

Returns

String. The gateway onboarding start/continue URL.

Usage

$PseudoWCPaymentGateway = new PseudoWCPaymentGateway();
$PseudoWCPaymentGateway->get_connection_url(): string;

PseudoWCPaymentGateway::get_connection_url() code WC 9.8.5

public function get_connection_url(): string {
	if ( isset( $this->connection_url ) ) {
		return $this->connection_url;
	}

	return $this->get_settings_url();
}