এটি আমার ব্লক ফাইল:
<?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();
}
}
}
আমি যদি এই ব্লকটি কল করি তবে আমি ত্রুটি পেয়েছি
পিএইচপি মারাত্মক ত্রুটি: /var/www/html/magento2/vendor/magento/framework/View/Element/AbstractBlock.php নম্বরে একটি সদস্য ফাংশন প্রেরণ () এ কল করুন, রেফার: http: //magentodev.gworks .mobi / magento2 / গ্রাহক / অ্যাকাউন্ট / সূচক /
error.log
অ্যাপাচি ফাইল থেকে ।, কেন, আমাকে এই সমস্যাটি কীভাবে সমাধান করবেন তা সূচিত করুন।