ฉันต้องการที่จะแสดงหมายเลขโทรศัพท์ที่บันทึกไว้ในผู้ดูแลระบบวีโอไอพีในส่วนหน้าในวีโอไอพี 2
เช่นเดียวกับใน magento 1.9 มันเหมือน
$storePhone = Mage::getStoreConfig('general/store_information/phone');
ฉันต้องการที่จะแสดงหมายเลขโทรศัพท์ที่บันทึกไว้ในผู้ดูแลระบบวีโอไอพีในส่วนหน้าในวีโอไอพี 2
เช่นเดียวกับใน magento 1.9 มันเหมือน
$storePhone = Mage::getStoreConfig('general/store_information/phone');
คำตอบ:
คุณจะต้องใช้Magento/Store/Model/Information
คลาสและเรียกgetStoreInformationObject()
วิธีการนั้น
คุณจะต้องฉีดคลาสนี้ในบล็อกที่กำหนดเองเพื่อให้สามารถใช้งานได้ในเทมเพลตของคุณ
protected $_storeInfo;
public function __construct(
....
\Magento\Store\Model\Information $storeInfo,
....
) {
...
$this->_storeInfo = $storeInfo;
....
}
จากนั้นสร้างวิธีการที่กำหนดเองเพื่อดึงหมายเลขโทรศัพท์:
public function getPhoneNumber()
{
return $this->_storeInfo->getStoreInformationObject(Store $store)->getPhone();
}
ดังนั้นในแม่แบบของคุณคุณสามารถโทร:
$block->getPhoneNumber();
คุณไม่ควรใช้ตัวจัดการวัตถุโดยตรง (ดูสาเหตุที่นี่: วีโอไอพี 2: ใช้หรือไม่ใช้ ObjectManager โดยตรง )
$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
$storeInformation = $objectManager->create('Magento/Store/Model/Information');
$storeInfo = $storeInformation->getStoreInformationObject($store);
จากนั้นคุณสามารถรับโทรศัพท์ได้โดยโทร:
$phone = $storeInfo->getPhone();
$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
$storeInformation = $objectManager->create('Magento\Store\Model\Information');
$store = $objectManager->create('Magento\Store\Model\Store');
$storeInfo = $storeInformation->getStoreInformationObject($store);
$phone = $storeInfo->getPhone();
คุณต้องฉีดอินสแตนซ์ของ\Magento\Framework\App\Config\ScopeConfigInterface
ในบล็อกของคุณ
$protected $scopeConfig;
public function __construct(
....
\Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig,
....
) {
...
$this->scopeConfig = $scopeConfig;
....
}
จากนั้นสร้างวิธีการ getStorePhone()
public function getStorePhone()
{
return $this->scopeConfig->getValue(
'general/store_information/phone',
\Magento\Store\Model\ScopeInterface::SCOPE_STORE
);
}
และโทรในเทมเพลตของคุณ echo $block->getStorePhone()
วิธีการข้างต้นไม่ได้ผลฉันจึงลองทำตามวิธีนี้และมันใช้งานได้สำหรับฉัน ...
namespace Vendor\Module\Block;
class Contact extends \Magento\Framework\View\Element\Template
{
protected $_storeInfo;
protected $_storeManagerInterface;
public function __construct(
\Magento\Framework\View\Element\Template\Context $context,
\Magento\Store\Model\Information $storeInfo,
\Magento\Store\Model\StoreManagerInterface $storeManagerInterface,
array $data = []
)
{
parent::__construct($context, $data);
$this->_storeInfo = $storeInfo;
$this->_storeManagerInterface = $storeManagerInterface;
}
public function getPhoneNumber()
{
return $this->_storeInfo->getStoreInformationObject($this->_storeManagerInterface->getStore(null))->getPhone();
}
}
และในไฟล์เทมเพลตที่ฉันเรียกว่า
echo $block->getPhoneNumber();
รหัสข้างต้นไม่ทำงานสำหรับฉัน ฉันได้ลองใช้รหัสต่อไปนี้แล้ว
class Sociallinks extends \Magento\Framework\View\Element\Template
{
protected $socialLinksHelper;
protected $objMgr;
protected $storeInfo;
protected $scopeConfig;
public function __construct(
\Magento\Framework\View\Element\Template\Context $context,
\Addpeople\Websettings\Helper\Data $myModuleHelper,
array $data = []
) {
parent::__construct($context, $data);
$this->_socialLinksHelper = $myModuleHelper;
$this->_objMgr = \Magento\Framework\App\ObjectManager::getInstance();
$storeInformation = $this->_objMgr->create('Magento\Store\Model\Information');
$store = $this->_objMgr->create('Magento\Store\Model\Store');
$this->_storeInfo = $storeInformation->getStoreInformationObject($store);
}
public function getPhoneNumber()
{
return $this->_storeInfo->getPhone();
}
}
ไฟล์เทมเพลต
<?php echo $block->getPhoneNumber();?>
เรายังสามารถใช้:
$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
$storePhone = $objectManager->get('Magento\Framework\App\Config\ScopeConfigInterface')->getValue('general/store_information/phone');