Я хочу відобразити номер телефону, збережений у адміністраторі magento в передній частині в magento 2.
Як у magento 1.9 його подібне
$storePhone = Mage::getStoreConfig('general/store_information/phone');
Я хочу відобразити номер телефону, збережений у адміністраторі magento в передній частині в magento 2.
Як у magento 1.9 його подібне
$storePhone = Mage::getStoreConfig('general/store_information/phone');
Відповіді:
Вам доведеться використовувати Magento/Store/Model/Information
клас і викликати getStoreInformationObject()
метод для цього.
Вам доведеться ввести цей клас у свій спеціальний блок, щоб мати можливість використовувати його у вашому шаблоні.
protected $_storeInfo;
public function __construct(
....
\Magento\Store\Model\Information $storeInfo,
....
) {
...
$this->_storeInfo = $storeInfo;
....
}
Потім створіть спеціальний метод для отримання номера телефону:
public function getPhoneNumber()
{
return $this->_storeInfo->getStoreInformationObject(Store $store)->getPhone();
}
Таким чином, у своєму шаблоні ви можете зателефонувати:
$block->getPhoneNumber();
Ніколи не слід використовувати безпосередньо менеджер об’єктів (див. Чому тут: Magento 2: використовувати або не використовувати безпосередньо ObjectManager? )
$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
$storeInformation = $objectManager->create('Magento/Store/Model/Information');
$storeInfo = $storeInformation->getStoreInformationObject($store);
Тоді ви можете отримати телефон, зателефонувавши:
$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
свого блоку.
$protected $scopeConfig;
public function __construct(
....
\Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig,
....
) {
...
$this->scopeConfig = $scopeConfig;
....
}
Потім створіть метод getStorePhone()
public function getStorePhone()
{
return $this->scopeConfig->getValue(
'general/store_information/phone',
\Magento\Store\Model\ScopeInterface::SCOPE_STORE
);
}
і зателефонуйте у свій шаблон echo $block->getStorePhone()
Наведені вище методи не працювали, тому я спробував наступним чином, і він працює для мене ...
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();
}
}
і у файлі шаблону я зателефонував
echo $block->getPhoneNumber();
Наведений вище код не працює для мене. Я спробував наступний код, який працює.
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();
}
}
Файл шаблону
<?php echo $block->getPhoneNumber();?>
Ми також можемо використовувати:
$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
$storePhone = $objectManager->get('Magento\Framework\App\Config\ScopeConfigInterface')->getValue('general/store_information/phone');