| Current Path : /var/www/clients/client3/web2/web/vendor/magento/module-config/Model/Config/Backend/ |
| Current File : /var/www/clients/client3/web2/web/vendor/magento/module-config/Model/Config/Backend/Store.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
/**
* Backend add store code to url backend
*/
namespace Magento\Config\Model\Config\Backend;
/**
* @api
* @since 100.0.2
*/
class Store extends \Magento\Framework\App\Config\Value
{
/**
* @var \Magento\Framework\App\Config\MutableScopeConfigInterface
*/
protected $_mutableConfig;
/**
* @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\Framework\App\Config\MutableScopeConfigInterface $mutableConfig
* @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\Framework\App\Config\MutableScopeConfigInterface $mutableConfig,
\Magento\Framework\Model\ResourceModel\AbstractResource $resource = null,
\Magento\Framework\Data\Collection\AbstractDb $resourceCollection = null,
array $data = []
) {
parent::__construct($context, $registry, $config, $cacheTypeList, $resource, $resourceCollection, $data);
$this->_mutableConfig = $mutableConfig;
}
/**
* @return $this
*/
public function afterSave()
{
$this->_cacheManager->clean();
return parent::afterSave();
}
}