1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- <?php
- namespace Symfony\Component\Translation;
- use Symfony\Component\Routing\RequestContext;
- use Symfony\Contracts\Translation\LocaleAwareInterface;
- class LocaleSwitcher implements LocaleAwareInterface
- {
- private string $defaultLocale;
-
- public function __construct(
- private string $locale,
- private iterable $localeAwareServices,
- private ?RequestContext $requestContext = null,
- ) {
- $this->defaultLocale = $locale;
- }
- public function setLocale(string $locale): void
- {
-
- try {
- if (class_exists(\Locale::class, false)) {
- \Locale::setDefault($locale);
- }
- } catch (\Exception) {
- }
- $this->locale = $locale;
- $this->requestContext?->setParameter('_locale', $locale);
- foreach ($this->localeAwareServices as $service) {
- $service->setLocale($locale);
- }
- }
- public function getLocale(): string
- {
- return $this->locale;
- }
-
- public function runWithLocale(string $locale, callable $callback): mixed
- {
- $original = $this->getLocale();
- $this->setLocale($locale);
- try {
- return $callback($locale);
- } finally {
- $this->setLocale($original);
- }
- }
- public function reset(): void
- {
- $this->setLocale($this->defaultLocale);
- }
- }
|