Dies ist meine Blockdatei:
<?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();
}
}
}
Wenn ich diesen Block aufrufe, erhalte ich eine Fehlermeldung
Schwerwiegender PHP-Fehler: Rufen Sie in /var/www/html/magento2/vendor/magento/framework/View/Element/AbstractBlock.php in Zeile 642 eine Member-Funktion dispatch () auf, referer: http: //magentodev.gworks .mobi / magento2 / customer / account / index /
aus der Apache- error.log
Datei., warum, empfehle mir, wie man dieses Problem löst.
magento2
blocks
magento-2.0
Rajkumar .E
quelle
quelle