Magento 2で現在のストアIDを取得する方法
ブロッククラスを使用する方法: 以下のコード例は、ブロッククラスを使用して現在のストアIDを取得する方法を示しています。<?php namespace Vendor\Module\Block; use Magento\Framework\View\Element\Template; class YourBlock extends Template { protected $_storeManager; public function __construct( \Magento\Backend\Block\Template\Context $context,>>More