Magento 2'de müşteri oturumu verileri nasıl ayarlanır ve alınır
Magento 2 seansı ile mücadele ediyorum. Denetleyici dosyasını aşağıda bir örnek kod olarak oluşturdum. <?php namespace vendor_name\module_name\Controller\SetGetSession; use Magento\Framework\App\Action\Action; class SetGetSession extends Action { protected $customerSession; public function _construct( \Magento\Customer\Model\Session $customerSession ) { $this->customerSession = $customerSession; } public function execute() { } } Herkes nasıl veri atama ve oturum değişkeninden …