12345678910111213141516171819202122232425262728 |
- <?php
- /**
- *
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Backend\Controller\Adminhtml\Auth;
- use Magento\Framework\App\Action\HttpGetActionInterface as HttpGet;
- use Magento\Framework\App\Action\HttpPostActionInterface as HttpPost;
- class Logout extends \Magento\Backend\Controller\Adminhtml\Auth implements HttpGet, HttpPost
- {
- /**
- * Administrator logout action
- *
- * @return \Magento\Backend\Model\View\Result\Redirect
- */
- public function execute()
- {
- $this->_auth->logout();
- $this->messageManager->addSuccessMessage(__('You have logged out.'));
- /** @var \Magento\Backend\Model\View\Result\Redirect $resultRedirect */
- $resultRedirect = $this->resultRedirectFactory->create();
- return $resultRedirect->setPath($this->_helper->getHomePageUrl());
- }
- }
|