????JFIF??x?x????'
Server IP : 104.21.80.1 / Your IP : 216.73.216.145 Web Server : LiteSpeed System : Linux premium151.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : tempvsty ( 647) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/tempvsty/pontiacques.org/wp-content/plugins/give/src/ThirdPartySupport/WPML/Helpers/ |
Upload File : |
<?php namespace Give\ThirdPartySupport\WPML\Helpers; use SitePress; use WPML_Request; /** * @since 3.22.0 */ class WPML { /** * @since 3.22.0 */ public static function getLocale(): string { $locale = get_locale(); /** * @var WPML_Request $wpml_request_handler * @var SitePress $sitepress */ global $wpml_request_handler, $sitepress; if (isset($wpml_request_handler) && isset($sitepress)) { $requestedLang = $wpml_request_handler->get_requested_lang(); $wpmlLocale = $sitepress->get_locale($requestedLang); $locale = $wpmlLocale != $locale ? $wpmlLocale : $locale; } return $locale; } }