| Server IP : 27.254.66.5 / Your IP : 216.73.217.39 Web Server : Apache/2 System : Linux cs82.hostneverdie.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64 User : technic2 ( 1951) PHP Version : 7.4.30 Disable Function : apache_child_terminate, apache_setenv, define_syslog_variables, escapeshellarg, escapeshellcmd,exec, fp, fput, highlight_file, ini_alter, ini_restore, inject_code, passthru,phpAds_remoteInfo, phpAds_XmlRpc,phpAds_xmlrpcDecode, phpAds_xmlrpcEncode, popen, posix_getpwuid, posix_kill, posix_mkfifo, posix_setpgid, posix_setsid,posix_setuid, posix_setuid, posix_uname,proc_open,proc_close, proc_get_status, proc_nice, proc_terminate, shell_exec, syslog, system, xmlrpc_entity_decode, show_source,sleep,pcntl_exec,virtual,suexec,dbmopen,dl,symlink,disk_free_space,diskfreespace,leak MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/technic2/public_html/old-website/wp-content/plugins/polylang/include/ |
Upload File : |
<?php
/**
* Links model for default permalinks
* for example mysite.com/?somevar=something&lang=en
* implements the "links_model interface"
*
* @since 1.2
*/
class PLL_Links_Default extends PLL_Links_Model {
public $using_permalinks = false;
/**
* Adds language information to an url
* links_model interface
*
* @since 1.2
*
* @param string $url url to modify
* @param object $lang language
* @return string modified url
*/
public function add_language_to_link( $url, $lang ) {
return empty( $lang ) || ( $this->options['hide_default'] && $this->options['default_lang'] == $lang->slug ) ? $url : add_query_arg( 'lang', $lang->slug, $url );
}
/**
* Removes the language information from an url
* links_model interface
*
* @since 1.2
*
* @param string $url url to modify
* @return string modified url
*/
public function remove_language_from_link( $url ) {
return remove_query_arg( 'lang', $url );
}
/**
* Returns the link to the first page
* links_model interface
*
* @since 1.2
*
* @param string $url url to modify
* @return string modified url
*/
function remove_paged_from_link( $url ) {
return remove_query_arg( 'paged', $url );
}
/**
* Returns the link to the paged page when using pretty permalinks
*
* @since 1.5
*
* @param string $url url to modify
* @param int $page
* @return string modified url
*/
public function add_paged_to_link( $url, $page ) {
return add_query_arg( array( 'paged' => $page ), $url );
}
/**
* Gets the language slug from the url if present
* links_model interface
*
* @since 1.2
* @since 2.0 add $url argument
*
* @param string $url optional, defaults to current url
* @return string language slug
*/
public function get_language_from_url( $url = '' ) {
if ( empty( $url ) ) {
$url = $_SERVER['REQUEST_URI'];
}
$pattern = '#lang=(' . implode( '|', $this->model->get_languages_list( array( 'fields' => 'slug' ) ) ) . ')#';
return preg_match( $pattern, trailingslashit( $url ), $matches ) ? $matches[1] : ''; // $matches[1] is the slug of the requested language
}
/**
* Returns the static front page url
*
* @since 1.8
*
* @param object $lang
* @return string
*/
public function front_page_url( $lang ) {
if ( $this->options['hide_default'] && $lang->slug == $this->options['default_lang'] ) {
return trailingslashit( $this->home );
}
$url = home_url( '/?page_id=' . $lang->page_on_front );
return $this->options['force_lang'] ? $this->add_language_to_link( $url, $lang ) : $url;
}
}