mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-01 07:02:48 +08:00
55 lines
932 B
PHP
55 lines
932 B
PHP
<?php
|
|
/**
|
|
* Helper class to determine if credit messaging should be displayed.
|
|
*
|
|
* @package WooCommerce\PayPalCommerce\Button\Helper
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace WooCommerce\PayPalCommerce\Button\Helper;
|
|
|
|
/**
|
|
* Class MessagesApply
|
|
*/
|
|
class MessagesApply {
|
|
|
|
|
|
/**
|
|
* In which countries credit messaging is available.
|
|
*
|
|
* @var array
|
|
*/
|
|
private $countries = array(
|
|
'US',
|
|
'DE',
|
|
'GB',
|
|
'FR',
|
|
'AU',
|
|
);
|
|
|
|
/**
|
|
* 2-letter country code of the shop.
|
|
*
|
|
* @var string
|
|
*/
|
|
private $country;
|
|
|
|
/**
|
|
* MessagesApply constructor.
|
|
*
|
|
* @param string $country 2-letter country code of the shop.
|
|
*/
|
|
public function __construct( string $country ) {
|
|
$this->country = $country;
|
|
}
|
|
|
|
/**
|
|
* Determines whether a credit messaging is enabled for the shops location country.
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function for_country(): bool {
|
|
return in_array( $this->country, $this->countries, true );
|
|
}
|
|
}
|