![]() 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-admin-adobe-ims/App/Action/Plugin/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\AdminAdobeIms\App\Action\Plugin; use Magento\AdminAdobeIms\Controller\Adminhtml\OAuth\ImsCallback; use Magento\Backend\App\Action\Plugin\Authentication as CoreAuthentication; use Magento\Backend\App\BackendAppList; use Magento\Backend\Model\Auth; use Magento\Backend\Model\UrlInterface; use Magento\Framework\App\ActionFlag; use Magento\Framework\App\ResponseInterface; use Magento\Framework\Controller\Result\RedirectFactory; use Magento\Framework\Data\Form\FormKey\Validator; use Magento\Framework\Message\ManagerInterface; class Authentication extends CoreAuthentication { /** * @param Auth $auth * @param UrlInterface $url * @param ResponseInterface $response * @param ActionFlag $actionFlag * @param ManagerInterface $messageManager * @param UrlInterface $backendUrl * @param RedirectFactory $resultRedirectFactory * @param BackendAppList $backendAppList * @param Validator $formKeyValidator */ public function __construct( Auth $auth, UrlInterface $url, ResponseInterface $response, ActionFlag $actionFlag, ManagerInterface $messageManager, UrlInterface $backendUrl, RedirectFactory $resultRedirectFactory, BackendAppList $backendAppList, Validator $formKeyValidator ) { parent::__construct( $auth, $url, $response, $actionFlag, $messageManager, $backendUrl, $resultRedirectFactory, $backendAppList, $formKeyValidator ); $this->_openActions[] = ImsCallback::ACTION_NAME; } }