Filter PayPal-supported language codes

This commit is contained in:
dinamiko 2021-05-03 16:25:37 +02:00
parent e13dfad27c
commit 845a83acb4
4 changed files with 105 additions and 2 deletions

View file

@ -46,7 +46,7 @@ class ApplicationContextRepository {
): ApplicationContext {
$brand_name = $this->settings->has( 'brand_name' ) ? $this->settings->get( 'brand_name' ) : '';
$locale = str_replace( '_', '-', get_user_locale() );
$locale = $this->valid_bcp47_code();
$landingpage = $this->settings->has( 'landing_page' ) ?
$this->settings->get( 'landing_page' ) : ApplicationContext::LANDING_PAGE_NO_PREFERENCE;
$context = new ApplicationContext(
@ -59,4 +59,20 @@ class ApplicationContextRepository {
);
return $context;
}
/**
* Returns a PayPal-supported BCP-47 code, for example de-DE-formal becomes de-DE.
*
* @return string
*/
protected function valid_bcp47_code() {
$locale = str_replace( '_', '-', get_user_locale() );
$parts = explode( '-', $locale );
if ( count( $parts ) < 3 ) {
return $locale;
}
return substr( $locale, 0, strrpos( $locale, '-' ) );
}
}