Voglio visualizzare il numero di telefono salvato in magento admin in frontend in magento 2.
Come nel magento 1.9 è come
$storePhone = Mage::getStoreConfig('general/store_information/phone');
Voglio visualizzare il numero di telefono salvato in magento admin in frontend in magento 2.
Come nel magento 1.9 è come
$storePhone = Mage::getStoreConfig('general/store_information/phone');
Risposte:
Dovrai usare la Magento/Store/Model/Information
classe e chiamare il getStoreInformationObject()
metodo per quello.
Dovrai iniettare questa classe nel tuo blocco personalizzato per poterlo usare nel tuo modello.
protected $_storeInfo;
public function __construct(
....
\Magento\Store\Model\Information $storeInfo,
....
) {
...
$this->_storeInfo = $storeInfo;
....
}
Quindi creare un metodo personalizzato per recuperare il numero di telefono:
public function getPhoneNumber()
{
return $this->_storeInfo->getStoreInformationObject(Store $store)->getPhone();
}
Quindi nel tuo modello puoi chiamare:
$block->getPhoneNumber();
Non dovresti mai usare direttamente il gestore oggetti (vedi perché qui: Magento 2: per usare o non usare direttamente l'ObjectManager? )
$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
$storeInformation = $objectManager->create('Magento/Store/Model/Information');
$storeInfo = $storeInformation->getStoreInformationObject($store);
Quindi puoi ottenere il telefono chiamando:
$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();
devi inserire l'istanza di \Magento\Framework\App\Config\ScopeConfigInterface
nel tuo blocco.
$protected $scopeConfig;
public function __construct(
....
\Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig,
....
) {
...
$this->scopeConfig = $scopeConfig;
....
}
Quindi crea il metodo getStorePhone()
public function getStorePhone()
{
return $this->scopeConfig->getValue(
'general/store_information/phone',
\Magento\Store\Model\ScopeInterface::SCOPE_STORE
);
}
e chiama il tuo modello echo $block->getStorePhone()
I metodi sopra non funzionavano, quindi ho provato nel modo seguente e funziona per me ...
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();
}
}
e nel file modello che ho chiamato
echo $block->getPhoneNumber();
Il codice sopra non funziona per me. Ho provato il seguente codice che funziona.
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 modello
<?php echo $block->getPhoneNumber();?>
Possiamo anche usare:
$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
$storePhone = $objectManager->get('Magento\Framework\App\Config\ScopeConfigInterface')->getValue('general/store_information/phone');