Voici mon fichier de blocage:
<?php
namespace ChennaiBox\Mymail\Block\Mail;
class MailContent extends \Magento\Framework\View\Element\Template
{
protected $_objectManager;
protected $customerSession;
public function __construct(
\Magento\Customer\Model\Session $customerSession,
\Magento\Framework\ObjectManagerInterface $objectManager
) {
$this->customerSession = $customerSession;
$this->_objectManager = $objectManager;
}
public function mymailData()
{
try{
if ($this->customerSession->isLoggedIn()) {
$cutomerEmail =(string)$this->customerSession->getCustomer()->getEmail();
echo $cutomerEmail;
else{
$this->_redirect('customer/account/login/');
}
}catch (Exception $e) {
$e->getMessage();
}
}
}
Si j'appelle ce bloc, j'obtiens une erreur
Erreur fatale PHP: Appel à une fonction membre dispatch () sur null dans /var/www/html/magento2/vendor/magento/framework/View/Element/AbstractBlock.php sur la ligne 642, référent: http: //magentodev.gworks .mobi / magento2 / client / compte / index /
à partir d'un error.log
fichier apache ., pourquoi, me suggérer comment résoudre ce problème.
magento2
blocks
magento-2.0
Rajkumar .E
la source
la source