![]() 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-user/Controller/Adminhtml/User/Role/ |
<?php /** * * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\User\Controller\Adminhtml\User\Role; use Magento\Framework\App\Action\HttpPostActionInterface; use Magento\Framework\Controller\ResultFactory; /** * User roles delete action. */ class Delete extends \Magento\User\Controller\Adminhtml\User\Role implements HttpPostActionInterface { /** * Remove role action. * * @return \Magento\Backend\Model\View\Result\Redirect */ public function execute() { /** @var \Magento\Backend\Model\View\Result\Redirect $resultRedirect */ $resultRedirect = $this->resultFactory->create(ResultFactory::TYPE_REDIRECT); $rid = (int)$this->getRequest()->getParam('rid', false); /** @var \Magento\User\Model\User $currentUser */ $currentUser = $this->_userFactory->create()->setId($this->_authSession->getUser()->getId()); if (in_array($rid, $currentUser->getRoles())) { $this->messageManager->addError(__('You cannot delete self-assigned roles.')); return $resultRedirect->setPath('adminhtml/*/editrole', ['rid' => $rid]); } $role = $this->_initRole(); if (!$role->getId()) { $this->messageManager->addError(__('We can\'t find a role to delete.')); return $resultRedirect->setPath("*/*/"); } try { $role->delete(); $this->messageManager->addSuccess(__('You deleted the role.')); } catch (\Exception $e) { $this->messageManager->addError(__('An error occurred while deleting this role.')); } return $resultRedirect->setPath("*/*/"); } }