![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-gift-message/Block/Adminhtml/Product/Helper/Form/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\GiftMessage\Block\Adminhtml\Product\Helper\Form; /** * Adminhtml additional helper block for product configuration * * @author Magento Core Team <[email protected]> * @codeCoverageIgnore */ class Config extends \Magento\Catalog\Block\Adminhtml\Product\Helper\Form\Config { /** * Core store config * * @var \Magento\Framework\App\Config\ScopeConfigInterface */ protected $_scopeConfig; /** * @param \Magento\Framework\Data\Form\Element\Factory $factoryElement * @param \Magento\Framework\Data\Form\Element\CollectionFactory $factoryCollection * @param \Magento\Framework\Escaper $escaper * @param \Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig * @param array $data */ public function __construct( \Magento\Framework\Data\Form\Element\Factory $factoryElement, \Magento\Framework\Data\Form\Element\CollectionFactory $factoryCollection, \Magento\Framework\Escaper $escaper, \Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig, $data = [] ) { $this->_scopeConfig = $scopeConfig; parent::__construct($factoryElement, $factoryCollection, $escaper, $data); } /** * Get config value data * * @return string|null */ protected function _getValueFromConfig() { return $this->_scopeConfig->getValue( \Magento\GiftMessage\Helper\Message::XPATH_CONFIG_GIFT_MESSAGE_ALLOW_ITEMS, \Magento\Store\Model\ScopeInterface::SCOPE_STORE ); } }