![]() 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-indexer/Controller/Adminhtml/Indexer/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Indexer\Controller\Adminhtml\Indexer; use Magento\Backend\App\Action\Context; use Magento\Framework\App\Action\HttpPostActionInterface as HttpPostActionInterface; use Magento\Framework\Indexer\IndexerRegistry; /** * Controller endpoint for mass action: invalidate index */ class MassInvalidate extends \Magento\Indexer\Controller\Adminhtml\Indexer implements HttpPostActionInterface { /** * @var IndexerRegistry $indexerRegistry */ private $indexerRegistry; /** * @param Context $context * @param IndexerRegistry $indexerRegistry */ public function __construct( Context $context, IndexerRegistry $indexerRegistry ) { parent::__construct($context); $this->indexerRegistry = $indexerRegistry; } /** * Turn mview on for the given indexers * * @return void */ public function execute() { $indexerIds = $this->getRequest()->getParam('indexer_ids'); if (!is_array($indexerIds)) { $this->messageManager->addErrorMessage(__('Please select indexers.')); } else { try { foreach ($indexerIds as $indexerId) { /** @var \Magento\Framework\Indexer\IndexerInterface $model */ $model = $this->indexerRegistry->get($indexerId); $model->invalidate(); } $this->messageManager->addSuccess( __('%1 indexer(s) were invalidated.', count($indexerIds)) ); } catch (\Magento\Framework\Exception\LocalizedException $e) { $this->messageManager->addErrorMessage($e->getMessage()); } catch (\Exception $e) { $this->messageManager->addException( $e, __("We couldn't invalidate indexer(s) because of an error.") ); } } return $this->resultRedirectFactory->create()->setPath('*/*/list'); } }