![]() 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-catalog/Plugin/Model/ResourceModel/Attribute/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Plugin\Model\ResourceModel\Attribute; use Magento\Catalog\Model\ResourceModel\Attribute; use Magento\PageCache\Model\Config; use Magento\Framework\App\Cache\TypeListInterface; class Save { /** * @var Config */ protected $config; /** * @var TypeListInterface */ protected $typeList; /** * @param Config $config * @param TypeListInterface $typeList */ public function __construct(Config $config, TypeListInterface $typeList) { $this->config = $config; $this->typeList = $typeList; } /** * Invalidate full page cache after saving attribute * * @param Attribute $subject * @param Attribute $result * @return Attribute $result * * @SuppressWarnings(PHPMD.UnusedFormalParameter) */ public function afterSave(Attribute $subject, Attribute $result) { if ($this->config->isEnabled()) { $this->typeList->invalidate('full_page'); } return $result; } }