![]() 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-customer/Model/Config/Backend/Show/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model\Config\Backend\Show; use Magento\Eav\Model\Entity\Attribute\AbstractAttribute; use Magento\Framework\App\Config\ScopeConfigInterface; /** * Customer Show Customer Model * * @author Magento Core Team <[email protected]> */ class Customer extends \Magento\Framework\App\Config\Value { public const XML_PATH_CUSTOMER_ADDRESS_SHOW_COMPANY = 'customer/address/company_show'; /** * @var \Magento\Eav\Model\Config */ protected $_eavConfig; /** * @var \Magento\Store\Model\StoreManagerInterface */ protected $storeManager; /** * @var string */ private $telephoneShowDefaultValue = 'req'; /** * @var array */ private $valueConfig = [ '' => ['is_required' => 0, 'is_visible' => 0], 'opt' => ['is_required' => 0, 'is_visible' => 1], '1' => ['is_required' => 0, 'is_visible' => 1], 'req' => ['is_required' => 1, 'is_visible' => 1], ]; /** * @param \Magento\Framework\Model\Context $context * @param \Magento\Framework\Registry $registry * @param \Magento\Framework\App\Config\ScopeConfigInterface $config * @param \Magento\Framework\App\Cache\TypeListInterface $cacheTypeList * @param \Magento\Store\Model\StoreManagerInterface $storeManager * @param \Magento\Eav\Model\Config $eavConfig * @param \Magento\Framework\Model\ResourceModel\AbstractResource $resource * @param \Magento\Framework\Data\Collection\AbstractDb $resourceCollection * @param array $data */ public function __construct( \Magento\Framework\Model\Context $context, \Magento\Framework\Registry $registry, \Magento\Framework\App\Config\ScopeConfigInterface $config, \Magento\Framework\App\Cache\TypeListInterface $cacheTypeList, \Magento\Store\Model\StoreManagerInterface $storeManager, \Magento\Eav\Model\Config $eavConfig, \Magento\Framework\Model\ResourceModel\AbstractResource $resource = null, \Magento\Framework\Data\Collection\AbstractDb $resourceCollection = null, array $data = [] ) { $this->_eavConfig = $eavConfig; parent::__construct($context, $registry, $config, $cacheTypeList, $resource, $resourceCollection, $data); $this->storeManager = $storeManager; } /** * Retrieve attribute code * * @return string */ protected function _getAttributeCode() { return $this->getField() === null ? '' : str_replace('_show', '', $this->getField()); } /** * Retrieve attribute objects * * @return AbstractAttribute[] */ protected function _getAttributeObjects() { return [$this->_eavConfig->getAttribute('customer', $this->_getAttributeCode())]; } /** * Actions after save * * @return $this */ public function afterSave() { $result = parent::afterSave(); $value = $this->getValue(); $data = $this->getValueConfig($value); if ($this->getScope() == 'websites') { $website = $this->storeManager->getWebsite($this->getScopeCode()); $dataFieldPrefix = 'scope_'; } else { $website = null; $dataFieldPrefix = ''; } foreach ($this->_getAttributeObjects() as $attributeObject) { if ($website) { $attributeObject->setWebsite($website); $attributeObject->load($attributeObject->getId()); } $attributeObject->setData($dataFieldPrefix . 'is_required', $data['is_required']); $attributeObject->setData($dataFieldPrefix . 'is_visible', $data['is_visible']); $attributeObject->save(); } return $result; } /** * Processing object after delete data * * @return \Magento\Framework\Model\AbstractModel */ public function afterDelete() { $result = parent::afterDelete(); if ($this->getScope() == 'websites') { $website = $this->storeManager->getWebsite($this->getScopeCode()); foreach ($this->_getAttributeObjects() as $attributeObject) { $attributeObject->setWebsite($website); $attributeObject->load($attributeObject->getId()); $attributeObject->setData('scope_is_required', null); $attributeObject->setData('scope_is_visible', null); $attributeObject->save(); } } elseif ($this->getScope() == ScopeConfigInterface::SCOPE_TYPE_DEFAULT) { $valueConfig = $this->getValueConfig($this->telephoneShowDefaultValue); foreach ($this->_getAttributeObjects() as $attributeObject) { $attributeObject->setData('is_required', $valueConfig['is_required']); $attributeObject->setData('is_visible', $valueConfig['is_visible']); $attributeObject->save(); } } return $result; } /** * Get value config * * @param string|int $value * @return array */ private function getValueConfig($value): array { if (isset($this->valueConfig[$value])) { $config = $this->valueConfig[$value]; } else { $config = $this->valueConfig['']; } return $config; } }