akki-team / sylius-settable-locale-plugin
Installs: 563
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
Type:sylius-plugin
Requires
- php: >=8.1
- sylius/sylius: ^1.11 || ^1.12 || ^1.13
README
Overview
This plugin allows you to set the locale context directly, with a localeCode
thanks to the
SettableLocaleContextInterface
.
Very useful in your symfony/command
and symfony/messenger
where locale context cannot be determined because there is
no request.
See the methods available for the SettableLocaleContextInterface.
Installation
- Install the plugin to your project with the following command:
$ composer require akki-team/sylius-settable-locale-plugin
- After the installation, check that the plugin is correctly declared in your project in the file
config/bundles.php
.
return [ ... Akki\SyliusSettableLocalePlugin\AkkiSyliusSettableLocalePlugin::class => ['all' => true], ];
- You can now inject the SettableChannelContextInterface in your services and set the channel context directly.
$this->settableLocaleContext->setLocaleCode($localeCode);