Magento 2: Как установить текущий store
Установить текущий store в Magento 2 можно вот так..
1. Добавляем в зависимости экземпляр типа StoreManagerInterface
1 2 3 4 5 6 7 8 9 10 11 12 13 |
/** * @var \Magento\Store\Model\StoreManagerInterface */ protected $_storeManager; public function __construct( \Magento\Store\Model\StoreManagerInterface $storeManager ) { $this->_storeManager = $storeManager; } |
2. В нужном месте вызываем
1 2 3 |
$this->_storeManager->setCurrentStore('YOUR_STORE_ID'); |
Author: | Tags: /
| Rating:
Leave a Reply