Jak uzyskać identyfikator klienta z sesji? Próbowałem tego, ale nie działa.
protected $_customerBonusPointFactory;
protected $_customerSession;
public function __construct(Session $customerSession, \Magento\Framework\View\Element\Template\Context $context) {
$this->_customerSession = $customerSession;
parent::__construct($context);
}
public function _prepareLayout() {
var_dump($this->_customerSession->getCustomer()->getId());
exit();
return parent::_prepareLayout();
}
$this->session->isLoggedIn()
zwracany jest true w mojej klasie kontrolera, ale zwraca false w mojej klasie blokowej. Dlaczego?
cacheable=false
patrz Magento 2 - Uzyskaj identyfikator klienta z sesji w klasie blokowej