Magento 2'de mağaza telefon numarası nasıl alınır


17

Magento admin'de kayıtlı telefon numarasını magento 2'de ön uçta görüntülemek istiyorum.

Magento 1.9'daki gibi

$storePhone = Mage::getStoreConfig('general/store_information/phone');

Yanıtlar:


14

Magento/Store/Model/InformationSınıfı kullanmanız ve getStoreInformationObject()bunun için yöntemi çağırmanız gerekir .

Önerilen yol

Bunu şablonunuzda kullanabilmek için özel bloğunuza bu sınıfı enjekte etmeniz gerekir.

protected $_storeInfo;

public function __construct(
    ....
    \Magento\Store\Model\Information $storeInfo,
    ....
) {
    ...
    $this->_storeInfo = $storeInfo;
    ....
}

Ardından telefon numarasını almak için özel bir yöntem oluşturun:

public function getPhoneNumber()
{
    return $this->_storeInfo->getStoreInformationObject(Store $store)->getPhone();
}

Böylece şablonunuzda şunları arayabilirsiniz:

$block->getPhoneNumber();

Önerilmeyen yol

Nesne yöneticisini asla doğrudan kullanmamalısınız (nedenine bakın: Magento 2: ObjectManager'ı doğrudan kullanmak veya kullanmamak? )

$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
$storeInformation = $objectManager->create('Magento/Store/Model/Information');
$storeInfo = $storeInformation->getStoreInformationObject($store);

Daha sonra arayarak telefonu alabilirsiniz:

$phone = $storeInfo->getPhone();

phtml nesne yöneticisi kullanarak nasıl uygulanır
Paras Arora

@ parasarora1303 benim düzenleme görmek ama asla doğrudan nesne yöneticisi kullanmalısınız
Raphael at Digital Pianism

@RaphaelatDigitalPianism: Hata alıyorum Önemli hata: Yakalanmayan Hata: 644 satırındaki \ magento \ framework \ View \ Element \ AbstractBlock.php dosyasında null değerinde bir üye işlev dağıtımı () çağrısı - Önbelleği ve tümünü temizledikten sonra. ...
Kaushal Suthar

2
GetStoreInformationObject
Franck Garnier

1
Bu cevap hala doğru değil. $ store tanımlanmamış.
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

\Magento\Framework\App\Config\ScopeConfigInterfacebloğunuza bir örneğini enjekte etmeniz gerekir .

$protected $scopeConfig;
public function __construct(
    ....
    \Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig,
    ....
) {
    ...
    $this->scopeConfig = $scopeConfig;
    ....
}

Ardından yöntemi oluşturun getStorePhone()

public function getStorePhone()
{
    return $this->scopeConfig->getValue(
        'general/store_information/phone',
        \Magento\Store\Model\ScopeInterface::SCOPE_STORE
    );
}

ve şablonunuzu arayın echo $block->getStorePhone()


1

Yukarıdaki yöntemler işe yaramadı, bu yüzden aşağıdaki şekilde denedim ve benim için çalışıyor ...

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

ve şablon dosyasında aradım

echo $block->getPhoneNumber();

1

Yukarıdaki kod benim için çalışmıyor. Çalışan aşağıdaki kodu denedim.

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

}
}

Şablon dosyası

<?php echo $block->getPhoneNumber();?>


0

Ayrıca şunları da kullanabiliriz:

$objectManager =  \Magento\Framework\App\ObjectManager::getInstance();        
$storePhone = $objectManager->get('Magento\Framework\App\Config\ScopeConfigInterface')->getValue('general/store_information/phone');
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.