1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- /**
- *
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Customer\Controller\Adminhtml\Group;
- use Magento\Framework\App\Action\HttpPostActionInterface;
- use Magento\Framework\Exception\NoSuchEntityException;
- class Delete extends \Magento\Customer\Controller\Adminhtml\Group implements HttpPostActionInterface
- {
- /**
- * Delete customer group.
- *
- * @return \Magento\Backend\Model\View\Result\Redirect
- */
- public function execute()
- {
- $id = $this->getRequest()->getParam('id');
- /** @var \Magento\Backend\Model\View\Result\Redirect $resultRedirect */
- $resultRedirect = $this->resultRedirectFactory->create();
- if ($id) {
- try {
- $this->groupRepository->deleteById($id);
- $this->messageManager->addSuccess(__('You deleted the customer group.'));
- } catch (NoSuchEntityException $e) {
- $this->messageManager->addError(__('The customer group no longer exists.'));
- return $resultRedirect->setPath('customer/*/');
- } catch (\Exception $e) {
- $this->messageManager->addError($e->getMessage());
- return $resultRedirect->setPath('customer/group/edit', ['id' => $id]);
- }
- }
- return $resultRedirect->setPath('customer/group');
- }
- }
|