Cara mendapatkan nomor telepon toko di magento 2


17

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:


14

Anda harus menggunakan Magento/Store/Model/Informationkelas dan memanggil getStoreInformationObject()metode untuk itu.

Cara yang disarankan

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

Cara yang tidak direkomendasikan

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

bagaimana menerapkannya menggunakan object manager di phtml
Paras Arora

@ parasarora1303 lihat hasil edit saya tetapi Anda tidak boleh menggunakan object manager secara langsung
Raphael di Digital Pianism

@RaphaelatDigitalPianism: Saya mendapatkan kesalahan Kesalahan fatal: Kesalahan tidak tertangkap: Panggilan ke fungsi pengiriman anggota () pada null di vendor \ magento \ framework \ Lihat \ Elemen \ AbstractBlock.php pada baris 644 --Setelah menghapus cache dan semuanya. ...
Kaushal Suthar

2
Anda harus melewati toko sebagai argumen dari fungsi getStoreInformationObject
Franck Garnier

1
Jawaban ini masih salah. $ store tidak didefinisikan.
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

Anda harus menyuntikkan instance dari \Magento\Framework\App\Config\ScopeConfigInterfacedalam 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()


1

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

1

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


0

Kami juga dapat menggunakan:

$objectManager =  \Magento\Framework\App\ObjectManager::getInstance();        
$storePhone = $objectManager->get('Magento\Framework\App\Config\ScopeConfigInterface')->getValue('general/store_information/phone');
Dengan menggunakan situs kami, Anda mengakui telah membaca dan memahami Kebijakan Cookie dan Kebijakan Privasi kami.
Licensed under cc by-sa 3.0 with attribution required.