Spamworldpro Mini Shell
Spamworldpro


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/mageworx/module-xmlsitemap/Controller/Adminhtml/Sitemap/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/old/vendor/mageworx/module-xmlsitemap/Controller/Adminhtml/Sitemap/MassAction.php
<?php
/**
 * Copyright © MageWorx. All rights reserved.
 * See LICENSE.txt for license details.
 */

namespace MageWorx\XmlSitemap\Controller\Adminhtml\Sitemap;

use Exception;
use Magento\Backend\Model\View\Result\Redirect;
use Magento\Framework\Exception\LocalizedException;
use Magento\Backend\App\Action\Context;
use Magento\Framework\Phrase;
use Magento\Framework\Registry;
use MageWorx\XmlSitemap\Model\ResourceModel\Sitemap\CollectionFactory;
use MageWorx\XmlSitemap\Model\SitemapFactory as SitemapFactory;
use Magento\Ui\Component\MassAction\Filter;
use MageWorx\XmlSitemap\Controller\Adminhtml\Sitemap as SitemapController;
use MageWorx\XmlSitemap\Model\Sitemap as SitemapModel;
use MageWorx\XmlSitemap\Model\Spi\SitemapResourceInterface;

abstract class MassAction extends SitemapController
{
    /**
     *
     * @var Filter
     */
    protected $filter;

    /**
     *
     * @var CollectionFactory
     */
    protected $collectionFactory;

    /**
     * MassAction constructor.
     *
     * @param Context $context
     * @param Registry $registry
     * @param SitemapFactory $sitemapFactory
     * @param CollectionFactory $collectionFactory
     * @param Filter $filter
     */
    public function __construct(
        Context $context,
        Registry $registry,
        SitemapFactory $sitemapFactory,
        SitemapResourceInterface $sitemapResource,
        CollectionFactory $collectionFactory,
        Filter $filter
    ) {
        $this->collectionFactory = $collectionFactory;
        $this->filter            = $filter;
        parent::__construct($context, $registry, $sitemapFactory, $sitemapResource);
    }

    /**
     *
     * @param SitemapModel $sitemap
     * @return mixed
     */
    abstract protected function doTheAction(SitemapModel $sitemap);

    /**
     * Execute action
     *
     * @return Redirect
     */
    public function execute()
    {
        try {
            $collection     = $this->filter->getCollection($this->collectionFactory->create());
            $collectionSize = $collection->getSize();
            foreach ($collection as $sitemap) {
                $this->doTheAction($sitemap);
            }
            $this->messageManager->addSuccessMessage($this->getSuccessMessage($collectionSize));
        } catch (LocalizedException $e) {
            $this->messageManager->addErrorMessage($e->getMessage());
        } catch (Exception $e) {
            $this->messageManager->addExceptionMessage($e, $this->getErrorMessage());
        }
        $redirectResult = $this->resultRedirectFactory->create();
        $redirectResult->setPath('mageworx_xmlsitemap/*/index');

        return $redirectResult;
    }

    /**
     * @param int $count
     * @return Phrase
     */
    protected function getSuccessMessage($count): Phrase
    {
        return __('Mass Action successful on %1 records', $count);
    }

    /**
     * @return Phrase
     */
    protected function getErrorMessage()
    {
        return __('Mass Action failed.');
    }
}

Spamworldpro Mini