WC_Gateway_Paypal::needs_setuppublicWC 3.4.0

Return whether or not this gateway still requires setup to function.

When this gateway is toggled on via AJAX, if this returns true a redirect will occur to the settings page instead.

Method of the class: WC_Gateway_Paypal{}

No Hooks.

Returns

true|false.

Usage

$WC_Gateway_Paypal = new WC_Gateway_Paypal();
$WC_Gateway_Paypal->needs_setup();

Changelog

Since 3.4.0 Introduced.

WC_Gateway_Paypal::needs_setup() code WC 10.7.0

public function needs_setup() {
	return empty( $this->email ) || ! is_email( $this->email );
}