Файловый менеджер - Редактировать - /var/www/xthruster/html/wp-content/plugins/wpml-string-translation/classes/MO/WPLocaleProxy.php
Назад
<?php namespace WPML\ST\MO; use WP_Locale; class WPLocaleProxy { /** * @var WP_Locale|null $wp_locale */ private $wp_locale; /** * @param string $method * @param array $args * * @return mixed|null */ public function __call( $method, array $args ) { $callback = [ $this->getWPLocale(), $method ]; if ( method_exists( $this->getWPLocale(), $method ) && is_callable( $callback ) ) { return call_user_func_array( $callback , $args ); } return null; } /** * @param string $property * * @return bool */ public function __isset( $property ) { if ( property_exists( \WP_Locale::class, $property ) ) { return true; } return false; } /** * @param string $property * * @return mixed|null */ public function __get( $property ) { if ( $this->__isset( $property ) ) { return $this->getWPLocale()->{$property}; } return null; } /** * @return WP_Locale|null */ private function getWPLocale() { if ( ! $this->wp_locale ) { $this->wp_locale = new WP_Locale(); } return $this->wp_locale; } }
| ver. 1.4 |
Github
|
.
| PHP 7.4.3-4ubuntu2.24 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка