Skip to content

Commit 707d193

Browse files
authored
Merge pull request #282 from woocommerce/fix/281
Ensure the correct UI is shown in the new WooCommerce payments settings.
2 parents 4d09f1c + 470e371 commit 707d193

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

includes/Framework/PaymentGateway/Payment_Gateway.php

+32
Original file line numberDiff line numberDiff line change
@@ -4807,4 +4807,36 @@ public function restore_refunded_inventory( $order_id, $refund_id ) {
48074807
}
48084808
}
48094809

4810+
/**
4811+
* Check if the gateway has an account connected.
4812+
*
4813+
* @since x.x.x
4814+
*
4815+
* @return bool true if the gateway has an account connected, false otherwise.
4816+
*/
4817+
public function is_account_connected() {
4818+
return $this->get_plugin()->get_settings_handler()->is_connected() && $this->get_plugin()->get_settings_handler()->get_location_id();
4819+
}
4820+
4821+
/**
4822+
* Returns true if the current gateway environment is configured to 'sandbox'
4823+
*
4824+
* @since x.x.x
4825+
*
4826+
* @return bool true if the current environment is test environment.
4827+
*/
4828+
public function is_in_test_mode() {
4829+
return $this->get_plugin()->get_settings_handler()->is_sandbox();
4830+
}
4831+
4832+
/**
4833+
* Determine if the gateway still requires setup.
4834+
*
4835+
* @since x.x.x
4836+
*
4837+
* @return bool tue if the gateway still requires setup, false otherwise.
4838+
*/
4839+
public function needs_setup() {
4840+
return ( ! $this->is_account_connected() );
4841+
}
48104842
}

0 commit comments

Comments
 (0)