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');
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:
Magento/Store/Model/Information
Sınıfı kullanmanız ve getStoreInformationObject()
bunun için yöntemi çağırmanız gerekir .
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();
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();
$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();
\Magento\Framework\App\Config\ScopeConfigInterface
bloğ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()
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();
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();?>
Ayrıca şunları da kullanabiliriz:
$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
$storePhone = $objectManager->get('Magento\Framework\App\Config\ScopeConfigInterface')->getValue('general/store_information/phone');