![]() 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-two-factor-auth/Model/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\TwoFactorAuth\Model; use Magento\Framework\Model\AbstractModel; use Magento\Framework\Api\DataObjectHelper; use Magento\Framework\Data\Collection\AbstractDb; use Magento\Framework\Model\Context; use Magento\Framework\Model\ResourceModel\AbstractResource; use Magento\Framework\Registry; use Magento\TwoFactorAuth\Api\Data\UserConfigInterface; use Magento\TwoFactorAuth\Api\Data\UserConfigInterfaceFactory; /** * User configuration data model * * @SuppressWarnings(PHPMD.LongVariable) * @SuppressWarnings(PHPMD.CamelCaseMethodName) */ class UserConfig extends AbstractModel { /** * @var DataObjectHelper */ private $dataObjectHelper; /** * @var UserConfigInterfaceFactory */ private $userConfigDataFactory; /** * @param Context $context * @param Registry $registry * @param DataObjectHelper $dataObjectHelper * @param UserConfigInterfaceFactory $userConfigDataFactory * @param AbstractResource|null $resource * @param AbstractDb|null $resourceCollection * @param array $data */ public function __construct( Context $context, Registry $registry, DataObjectHelper $dataObjectHelper, UserConfigInterfaceFactory $userConfigDataFactory, AbstractResource $resource = null, AbstractDb $resourceCollection = null, array $data = [] ) { parent::__construct($context, $registry, $resource, $resourceCollection, $data); $this->dataObjectHelper = $dataObjectHelper; $this->userConfigDataFactory = $userConfigDataFactory; } /** * @inheritDoc */ protected function _construct() { $this->_init(ResourceModel\UserConfig::class); } /** * Retrieve UserConfig model * * @return UserConfigInterface */ public function getDataModel(): UserConfigInterface { $userConfigData = $this->getData(); /** @var UserConfigInterface $userConfigDataObject */ $userConfigDataObject = $this->userConfigDataFactory->create(); $this->dataObjectHelper->populateWithArray( $userConfigDataObject, $userConfigData, UserConfigInterface::class ); $userConfigDataObject->setId($this->getId()); return $userConfigDataObject; } }