/
home
/
techb158
/
on-time-movers.com
/
wp-content
/
plugins
/
polylang
/
src
/
/home/techb158/on-time-movers.com/wp-content/plugins/polylang/src
mkdir
upload
Name
Size
Mode
Actions
admin/
-
0755
rm
Capabilities/
-
0755
rm
frontend/
-
0755
rm
install/
-
0755
rm
integrations/
-
0755
rm
Model/
-
0755
rm
modules/
-
0755
rm
Options/
-
0755
rm
settings/
-
0755
rm
api.php
22291
0644
edit
dl
rm
base.php
6259
0644
edit
dl
rm
cache.php
2454
0644
edit
dl
rm
class-polylang.php
8537
0644
edit
dl
rm
constant-functions.php
1853
0644
edit
dl
rm
cookie.php
3104
0644
edit
dl
rm
crud-posts.php
15049
0644
edit
dl
rm
crud-terms.php
8962
0644
edit
dl
rm
default-term.php
6595
0644
edit
dl
rm
filter-rest-routes.php
5100
0644
edit
dl
rm
filters-links.php
5780
0644
edit
dl
rm
filters-sanitization.php
3311
0644
edit
dl
rm
filters-widgets-options.php
2697
0644
edit
dl
rm
filters.php
13248
0644
edit
dl
rm
format-util.php
3114
0644
edit
dl
rm
functions.php
5264
0644
edit
dl
rm
language-deprecated.php
7296
0644
edit
dl
rm
language-factory.php
9630
0644
edit
dl
rm
language.php
18502
0644
edit
dl
rm
license.php
9620
0644
edit
dl
rm
links-abstract-domain.php
3240
0644
edit
dl
rm
links-default.php
3100
0644
edit
dl
rm
links-directory.php
9726
0644
edit
dl
rm
links-domain.php
2980
0644
edit
dl
rm
links-model.php
6678
0644
edit
dl
rm
links-permalinks.php
5753
0644
edit
dl
rm
links-subdomain.php
2209
0644
edit
dl
rm
links.php
1415
0644
edit
dl
rm
mo.php
3504
0644
edit
dl
rm
model.php
23508
0644
edit
dl
rm
nav-menu.php
4609
0644
edit
dl
rm
olt-manager.php
3056
0644
edit
dl
rm
query.php
7913
0644
edit
dl
rm
rest-request.php
4325
0644
edit
dl
rm
static-pages.php
6418
0644
edit
dl
rm
switcher.php
11237
0644
edit
dl
rm
term-slug.php
5012
0644
edit
dl
rm
translatable-object-with-types-interface.php
1055
0644
edit
dl
rm
translatable-object-with-types-trait.php
2005
0644
edit
dl
rm
translatable-object.php
18042
0644
edit
dl
rm
translatable-objects.php
3799
0644
edit
dl
rm
translate-option.php
13417
0644
edit
dl
rm
translated-object.php
19388
0644
edit
dl
rm
translated-post.php
17586
0644
edit
dl
rm
translated-term.php
15171
0644
edit
dl
rm
walker-dropdown.php
3857
0644
edit
dl
rm
walker-list.php
2602
0644
edit
dl
rm
walker.php
2434
0644
edit
dl
rm
widget-calendar.php
11858
0644
edit
dl
rm
widget-languages.php
5466
0644
edit
dl
rm
Edit:
/home/techb158/on-time-movers.com/wp-content/plugins/polylang/src/rest-request.php
(4325B)
<?php /** * @package Polylang */ /** * Main Polylang class for REST API requests, accessible from @see PLL(). * * @since 2.6 */ class PLL_REST_Request extends PLL_Base { /** * @var PLL_Language|false|null A `PLL_Language` when defined, `false` otherwise. `null` until the language * definition process runs. */ public $curlang; /** * @var PLL_Default_Term|null */ public $default_term; /** * @var PLL_Filters|null */ public $filters; /** * @var PLL_Filters_Links|null */ public $filters_links; /** * @var PLL_Admin_Links|null */ public $links; /** * @var PLL_Nav_Menu|null */ public $nav_menu; /** * @var PLL_Static_Pages|null */ public $static_pages; /** * @var PLL_Filters_Widgets_Options|null */ public $filters_widgets_options; /** * @var PLL_Filters_Sanitization|null */ public $filters_sanitization; /** * Constructor. * * @since 3.4 * * @param PLL_Links_Model $links_model Reference to the links model. */ public function __construct( &$links_model ) { parent::__construct( $links_model ); // Static front page and page for posts. // Early instantiated to be able to correctly initialize language properties. if ( 'page' === get_option( 'show_on_front' ) ) { $this->static_pages = new PLL_Static_Pages( $this ); } $this->model->set_languages_ready(); } /** * Setup filters. * * @since 2.6 * * @return void */ public function init() { parent::init(); $this->default_term = new PLL_Default_Term( $this ); $this->default_term->add_hooks(); if ( ! $this->model->has_languages() ) { return; } add_filter( 'rest_pre_dispatch', array( $this, 'set_language' ), 10, 3 ); add_filter( 'rest_request_before_callbacks', array( $this, 'set_filters_sanitization' ) ); $this->filters_links = new PLL_Filters_Links( $this ); $this->filters = new PLL_Filters( $this ); $this->filters_widgets_options = new PLL_Filters_Widgets_Options( $this ); $this->links = new PLL_Admin_Links( $this ); $this->nav_menu = new PLL_Frontend_Nav_Menu( $this ); // For auto added pages to menu. } /** * Sets the current language during a REST request if sent. * * @since 3.3 * * @param mixed $result Response to replace the requested version with. Remains untouched. * @param WP_REST_Server $server Server instance. * @param WP_REST_Request $request Request used to generate the response. * @return mixed Untouched $result. * * @phpstan-param WP_REST_Request<array{lang?: string}> $request */ public function set_language( $result, $server, $request ) { $lang = $request->get_param( 'lang' ); if ( ! empty( $lang ) && is_string( $lang ) ) { $this->curlang = $this->model->get_language( sanitize_key( $lang ) ); if ( empty( $this->curlang ) && ! empty( $this->options['default_lang'] ) ) { // A lang has been requested but it is invalid, let's fall back to the default one. $this->curlang = $this->model->get_language( sanitize_key( $this->options['default_lang'] ) ); } } if ( ! empty( $this->curlang ) ) { /** This action is documented in src/frontend/choose-lang.php */ do_action( 'pll_language_defined', $this->curlang->slug, $this->curlang ); } else { /** This action is documented in src/class-polylang.php */ do_action( 'pll_no_language_defined' ); // To load overridden textdomains. } return $result; } /** * Initialize sanitization filters with the correct language locale. * * @see WP_REST_Server::dispatch() * * @since 2.9 * @since 3.8 Moved from Polylang Pro and hooked on 'rest_request_before_callbacks' instead of 'rest_pre_dispatch'. * * @param WP_REST_Response|WP_HTTP_Response|WP_Error|mixed $response Result to send to the client. * @return WP_REST_Response|WP_HTTP_Response|WP_Error|mixed */ public function set_filters_sanitization( $response ) { $language = $this->request->get_language(); if ( empty( $language ) ) { $type = $this->request->get_object_type(); $language = $type ? $this->model->$type->get_language( $this->request->get_id() ) : null; } if ( ! empty( $language ) ) { $this->filters_sanitization = new PLL_Filters_Sanitization( $language->locale ); } return $response; } }
Save
cmd:
run