Warning: This method has been deprecated.
WC_Admin_Setup_Wizard::is_square_supported_country( string $country_code )
Is Square country supported
Description Description
Parameters Parameters
- $country_code
-
(Required) Country code.
Source Source
File: includes/admin/class-wc-admin-setup-wizard.php
protected function is_square_supported_country( $country_code ) {
$square_supported_countries = array(
'US',
'CA',
'JP',
'GB',
'AU',
);
return in_array( $country_code, $square_supported_countries, true );
}
Changelog Changelog
| Version | Description |
|---|---|
| 4.6.0 | Introduced. |