![]() 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/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Model; /** * System configuration operations for customer groups. */ class CustomerGroupConfig implements \Magento\Customer\Api\CustomerGroupConfigInterface { /** * @var \Magento\Config\Model\Config */ private $config; /** * @var \Magento\Customer\Api\GroupRepositoryInterface */ private $groupRepository; /** * @param \Magento\Config\Model\Config $config * @param \Magento\Customer\Api\GroupRepositoryInterface $groupRepository */ public function __construct( \Magento\Config\Model\Config $config, \Magento\Customer\Api\GroupRepositoryInterface $groupRepository ) { $this->config = $config; $this->groupRepository = $groupRepository; } /** * @inheritdoc */ public function setDefaultCustomerGroup($id) { if ($this->groupRepository->getById($id)) { $this->config->setDataByPath( \Magento\Customer\Model\GroupManagement::XML_PATH_DEFAULT_ID, $id ); $this->config->save(); } return $id; } }