Come ottenere il numero di telefono del negozio in magento 2


17

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:


14

Dovrai usare la Magento/Store/Model/Informationclasse e chiamare il getStoreInformationObject()metodo per quello.

Modo consigliato

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();

Modo non raccomandato

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();

come implementarlo usando il gestore degli oggetti in phtml
Paras Arora,

@ parasarora1303 guarda la mia modifica ma non dovresti mai usare direttamente il gestore oggetti
Raffaello al Pianismo digitale,

@RaphaelatDigitalPianism: ricevo un errore Errore irreversibile: errore non rilevato: chiamata a un invio di funzioni membro () su null nel fornitore \ magento \ framework \ View \ Element \ AbstractBlock.php sulla riga 644 - Dopo aver svuotato la cache e tutto il resto. ...
Kaushal Suthar il

2
Devi passare il negozio come argomento della funzione getStoreInformationObject
Franck Garnier

1
Questa risposta non è ancora corretta. $ store non è definito.
Cypher909,

7
$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();

7

devi inserire l'istanza di \Magento\Framework\App\Config\ScopeConfigInterfacenel 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()


1

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();

1

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();?>


0

Possiamo anche usare:

$objectManager =  \Magento\Framework\App\ObjectManager::getInstance();        
$storePhone = $objectManager->get('Magento\Framework\App\Config\ScopeConfigInterface')->getValue('general/store_information/phone');
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.