![]() 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/redchamps/module-core/Controller/Adminhtml/Action/ |
<?php namespace RedChamps\Core\Controller\Adminhtml\Action; use Magento\Backend\App\AbstractAction; use Magento\Backend\App\Action; use RedChamps\Core\Cron\GetUpdates; class Validate extends AbstractAction { protected $fetchUpdates; public function __construct( Action\Context $context, GetUpdates $getUpdates ) { $this->fetchUpdates = $getUpdates; parent::__construct($context); } public function execute() { $isAjax = $this->getRequest()->isAjax(); $force = $isAjax ? false : true; $this->fetchUpdates->execute($force); if (!$isAjax) { $this->messageManager->getMessages()->clear(); $this->_redirect('adminhtml/dashboard/index'); } } }