| Current Path : /var/www/clients/client3/web2/web/vendor/magefan/module-community/Model/ |
| Current File : /var/www/clients/client3/web2/web/vendor/magefan/module-community/Model/SetLinvFlag.php |
<?php
/**
* Copyright © Magefan (support@magefan.com). All rights reserved.
* Please visit Magefan.com for license details (https://magefan.com/end-user-license-agreement).
*/
declare(strict_types=1);
namespace Magefan\Community\Model;
use Magento\Framework\App\Config\Storage\WriterInterface;
use Magento\Framework\App\Cache\TypeListInterface;
use Magento\Framework\App\Config\ScopeConfigInterface;
use Magento\Framework\App\Cache\Type\Config;
class SetLinvFlag
{
/**
* @var WriterInterface
*/
private $configWriter;
/**
* @var TypeListInterface
*/
private $cacheTypeList;
/**
* @param WriterInterface $configWriter
* @param TypeListInterface $cacheTypeList
*/
public function __construct(
WriterInterface $configWriter,
TypeListInterface $cacheTypeList
) {
$this->configWriter = $configWriter;
$this->cacheTypeList = $cacheTypeList;
}
/**
* @param $module
* @param $value
* @return void
*/
public function execute($module, $value)
{
$this->configWriter->save($module . '/g'.'en'.'er'.'al'.'/l'.'in'.'v', $value, ScopeConfigInterface::SCOPE_TYPE_DEFAULT, 0);
$this->cacheTypeList->cleanType(Config::TYPE_IDENTIFIER);
}
}