Saya ingin menampilkan nomor telepon yang disimpan di admin magento di frontend di magento 2.
Seperti di magento 1.9 sejenisnya
$storePhone = Mage::getStoreConfig('general/store_information/phone');
Saya ingin menampilkan nomor telepon yang disimpan di admin magento di frontend di magento 2.
Seperti di magento 1.9 sejenisnya
$storePhone = Mage::getStoreConfig('general/store_information/phone');
Jawaban:
Anda harus menggunakan Magento/Store/Model/Information
kelas dan memanggil getStoreInformationObject()
metode untuk itu.
Anda harus menyuntikkan kelas ini di blok khusus Anda untuk dapat menggunakannya di template Anda.
protected $_storeInfo;
public function __construct(
....
\Magento\Store\Model\Information $storeInfo,
....
) {
...
$this->_storeInfo = $storeInfo;
....
}
Kemudian buat metode khusus untuk mengambil nomor telepon:
public function getPhoneNumber()
{
return $this->_storeInfo->getStoreInformationObject(Store $store)->getPhone();
}
Dengan demikian dalam template Anda, Anda dapat memanggil:
$block->getPhoneNumber();
Anda tidak harus menggunakan manajer objek langsung (melihat mengapa di sini: Magento 2: untuk menggunakan atau tidak menggunakan ObjectManager langsung? )
$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
$storeInformation = $objectManager->create('Magento/Store/Model/Information');
$storeInfo = $storeInformation->getStoreInformationObject($store);
Maka Anda bisa mendapatkan telepon dengan menelepon:
$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();
Anda harus menyuntikkan instance dari \Magento\Framework\App\Config\ScopeConfigInterface
dalam blok Anda.
$protected $scopeConfig;
public function __construct(
....
\Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig,
....
) {
...
$this->scopeConfig = $scopeConfig;
....
}
Kemudian buat metode getStorePhone()
public function getStorePhone()
{
return $this->scopeConfig->getValue(
'general/store_information/phone',
\Magento\Store\Model\ScopeInterface::SCOPE_STORE
);
}
dan panggil templat Anda echo $block->getStorePhone()
Metode di atas tidak berfungsi, jadi saya sudah mencoba mengikuti cara ini dan itu berfungsi untuk saya ...
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();
}
}
dan dalam file template saya sudah menelepon
echo $block->getPhoneNumber();
Kode di atas tidak berfungsi untuk saya. Saya sudah mencoba kode berikut yang berfungsi.
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();
}
}
File template
<?php echo $block->getPhoneNumber();?>
Kami juga dapat menggunakan:
$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
$storePhone = $objectManager->get('Magento\Framework\App\Config\ScopeConfigInterface')->getValue('general/store_information/phone');