Heray-Was-Here
Server : Apache
System : Linux hybrid3195.ca.ns.planethoster.net 3.10.0-1160.119.1.el7.tuxcare.els19.x86_64 #1 SMP Mon Mar 31 17:29:00 UTC 2025 x86_64
User : alliancerealtynb ( 1004)
PHP Version : 7.4.33
Disable Function : noop
Directory :  /home/alliancerealtynb/wpml-string-translationOLD/classes/utilities/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/alliancerealtynb/wpml-string-translationOLD/classes/utilities/LanguageResolution.php
<?php

namespace WPML\ST\Utils;

use SitePress;
use WPML_String_Translation;

class LanguageResolution {

	/** @var SitePress $sitepress */
	private $sitepress;

	/** @var WPML_String_Translation $string_translation */
	private $string_translation;

	/** @var null|string $admin_language */
	private $admin_language;

	public function __construct( SitePress $sitepress, WPML_String_Translation $string_translation ) {
		$this->sitepress          = $sitepress;
		$this->string_translation = $string_translation;
	}

	/** @return bool|mixed|string|null */
	public function getCurrentLanguage() {
		if ( $this->string_translation->should_use_admin_language() ) {
			$current_lang = $this->getAdminLanguage();
		} else {
			$current_lang = $this->sitepress->get_current_language();
		}

		if ( ! $current_lang ) {
			$current_lang = $this->sitepress->get_default_language();
			if ( ! $current_lang ) {
				$current_lang = 'en';
			}
		}

		return $current_lang;
	}

	/**  */
	public function getCurrentLocale() {
		return $this->sitepress->get_locale( $this->getCurrentLanguage() );
	}

	/** @return string */
	private function getAdminLanguage() {
		if ( $this->sitepress->is_wpml_switch_language_triggered() ) {
			return $this->sitepress->get_admin_language();
		}

		if ( ! $this->admin_language ) {
			$this->admin_language = $this->sitepress->get_admin_language();
		}

		return $this->admin_language;
	}
}

Hry