![]() 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/setup/src/Magento/Setup/Fixtures/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Setup\Fixtures; /** * Class ConfigsApplyFixture */ class ConfigsApplyFixture extends Fixture { /** * @var int */ protected $priority = -1; /** * {@inheritdoc} */ public function execute() { $configs = $this->fixtureModel->getValue('configs', []); if (empty($configs)) { return; } $this->fixtureModel->resetObjectManager(); foreach ($configs['config'] as $config) { $backendModel = isset($config['backend_model']) ? $config['backend_model'] : \Magento\Framework\App\Config\Value::class; /** * @var \Magento\Framework\App\Config\ValueInterface $configData */ $configData = $this->fixtureModel->getObjectManager()->create($backendModel); $configData->setPath($config['path']) ->setScope($config['scope']) ->setScopeId($config['scopeId']) ->setValue($config['value']) ->save(); } $this->fixtureModel->getObjectManager() ->get(\Magento\Framework\App\CacheInterface::class) ->clean([\Magento\Framework\App\Config::CACHE_TAG]); $this->fixtureModel->getObjectManager() ->get(\Magento\Config\App\Config\Type\System::class) ->clean(); } /** * {@inheritdoc} */ public function getActionTitle() { return 'Config Changes'; } /** * {@inheritdoc} */ public function introduceParamLabels() { return []; } }