PATH:
home
/
thebhoeo
/
.trash
/
backwpup
/
vendor
/
inpsyde
/
backwpup-restore-shared
/
src
/
Api
/
Controller
<?php declare(strict_types=1); namespace Inpsyde\Restore\Api\Controller; use Inpsyde\Restore\Api\Module\Registry; /** * Class LanguageController. */ class LanguageController { /** * @var Registry Global Registry */ private $registry; public function __construct(Registry $registry) { $this->registry = $registry; } /** * Method to set new locale and saves registry. * * @param string $locale New locale string * * @return bool true on success, false if the locale isn't a valid one */ public function switch_language_action(string $locale): bool { if (!$this->is_valid_locale($locale)) { return false; } $this->registry->locale = $locale; return true; } /** * Sanitize locale. * * Props to @ocean90. * * @see https://core.trac.wordpress.org/ticket/28303#comment:11 * * @param string $locale Provided locale * * @return int|bool 1 if the pattern matches given subject, 0 if it does not, * or FALSE if an error occurred */ private function is_valid_locale(string $locale) // phpcs:ignore { return preg_match('/(?:(.+)-)?([a-z]{2,3}(?:_[A-Z]{2})?(?:_[a-z]+)?)/', $locale); } }
[-] DecryptController.php
[edit]
[-] LanguageController.php
[edit]
[-] JobController.php
[edit]
[+]
..