| Server IP : 94.16.115.136 / Your IP : 216.73.217.165 Web Server : Apache/2.4.52 (Ubuntu) System : Linux rogerrabbit 5.15.0-185-generic #195-Ubuntu SMP Fri Jun 19 17:11:50 UTC 2026 x86_64 User : bkillingseder ( 1001) PHP Version : 8.1.2-1ubuntu2.25 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /srv/web/www/sites/silentroots/html/wp-content/plugins/polylang/frontend/ |
Upload File : |
<?php
/**
* @package Polylang
*/
/**
* Choose the language when the language is managed by different domains
*
* @since 1.5
*/
class PLL_Choose_Lang_Domain extends PLL_Choose_Lang_Url {
/**
* Don't set any language cookie
*
* @since 1.5
*
* @return void
*/
public function maybe_setcookie() {}
/**
* Don't redirect according to browser preferences
*
* @since 1.5
*
* @return PLL_Language
*/
public function get_preferred_language() {
return $this->model->get_language( $this->links_model->get_language_from_url() );
}
/**
* Adds query vars to query for home pages in all languages
*
* @since 1.5
*
* @return void
*/
public function home_requested() {
$this->set_curlang_in_query( $GLOBALS['wp_query'] );
/** This action is documented in include/choose-lang.php */
do_action( 'pll_home_requested' );
}
}