1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Customer\Controller\Adminhtml\Index;
- use Magento\Eav\Model\Entity\Collection\AbstractCollection;
- use Magento\Framework\Controller\ResultFactory;
- use Magento\Framework\App\ResponseInterface;
- use Magento\Framework\Controller\ResultInterface;
- use Magento\Backend\App\Action\Context;
- use Magento\Ui\Component\MassAction\Filter;
- use Magento\Customer\Model\ResourceModel\Customer\CollectionFactory;
- /**
- * Class AbstractMassStatus
- */
- abstract class AbstractMassAction extends \Magento\Backend\App\Action
- {
- /**
- * Authorization level of a basic admin session
- *
- * @see _isAllowed()
- */
- const ADMIN_RESOURCE = 'Magento_Customer::manage';
- /**
- * @var string
- */
- protected $redirectUrl = '*/*/index';
- /**
- * @var Filter
- */
- protected $filter;
- /**
- * @var CollectionFactory
- */
- protected $collectionFactory;
- /**
- * @param Context $context
- * @param Filter $filter
- * @param CollectionFactory $collectionFactory
- */
- public function __construct(Context $context, Filter $filter, CollectionFactory $collectionFactory)
- {
- parent::__construct($context);
- $this->filter = $filter;
- $this->collectionFactory = $collectionFactory;
- }
- /**
- * Execute action
- *
- * @return \Magento\Backend\Model\View\Result\Redirect
- * @throws \Magento\Framework\Exception\LocalizedException|\Exception
- */
- public function execute()
- {
- try {
- $collection = $this->filter->getCollection($this->collectionFactory->create());
- return $this->massAction($collection);
- } catch (\Exception $e) {
- $this->messageManager->addError($e->getMessage());
- /** @var \Magento\Backend\Model\View\Result\Redirect $resultRedirect */
- $resultRedirect = $this->resultFactory->create(ResultFactory::TYPE_REDIRECT);
- return $resultRedirect->setPath($this->redirectUrl);
- }
- }
- /**
- * Return component referer url
- * TODO: Technical dept referer url should be implement as a part of Action configuration in appropriate way
- *
- * @return null|string
- */
- protected function getComponentRefererUrl()
- {
- return $this->filter->getComponentRefererUrl()?: 'customer/*/index';
- }
- /**
- * Execute action to collection items
- *
- * @param AbstractCollection $collection
- * @return ResponseInterface|ResultInterface
- */
- abstract protected function massAction(AbstractCollection $collection);
- }
|