Magento 2:重写控制器


17

我该如何在Magento 2中重写控制器(实际上是一个动作)?
按照这里的指示进行了尝试:

我有Namespace_Module一个用di.xml文件调用的模块,该模块已考虑在内,因为同一系统可在模型和模块上运行。
示例:

<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../lib/internal/Magento/Framework/ObjectManager/etc/config.xsd">
    <!-- this one doesn't work for a controller action -->
    <preference for="Magento\Backend\Controller\Adminhtml\Dashboard\RefreshStatistics" 
         type="Namespace\Module\Controller\Adminhtml\Dashboard\RefreshStatistics" />
    <!-- this one works for a model -->
    <preference for="Magento\Customer\Model\Resource\GroupRepository" 
        type="Namespace\Module\Model\Resource\Customer\GroupRepository" />
     <!-- this one works also for a block -->
    <preference for="Magento\Backend\Block\Dashboard" 
        type="Namespace\Module\Block\Backend\Dashboard" />
</config>

我正在尝试用自己的操作替换仪表板刷新统计信息。像上面那样做,execute原始类中的方法仍然被调用,而不是我自己的。
var/cachevar/generation被清除。



1
@TimHallman。谢谢,但是我不想为此写一个路由器。我敢肯定有一种更清洁的方法。
马里斯(Marius)

Answers:


16

找到了。
实际上,我在问题中发布的是重写控制器的正确方法。

<preference for="Magento\Backend\Controller\Adminhtml\Dashboard\RefreshStatistics" 
     type="Namespace\Module\Controller\Adminhtml\Dashboard\RefreshStatistics" />

效果很好。
对我来说,问题是这样的。我忘了提到我删除了一些模块Magento2,其中包括Reports模块。我没有在问题中声明它,因为我认为它并不重要。
如果您要更改的所有类都存在,并且它们的所有父类也都存在,则上述用于重写控制器(或其他类)的方法将起作用。
因此,原来的Magento\Backend\Controller\Adminhtml\Dashboard\RefreshStatistics扩展Magento\Reports\Controller\Adminhtml\Report\Statistics是我删除的。
在magento 2中,通过扫描文件Controller夹文件夹中所有启用的模块来收集路由,并将它们收集在一个阵列中。
到目前为止,一切都很好。
我最后得到这条线:

[magento\backend\controller\adminhtml\dashboard\refreshstatistics] => Magento\Backend\Controller\Adminhtml\Dashboard\RefreshStatistics

然后将请求匹配到路由 magento\backend\controller\adminhtml\dashboard\refreshstatistics,Magento检查与该路由相对应的类是否为的子类Magento\Framework\App\ActionInterface。由于路由是在确定和实例化我的班级之前收集的,因此将验证旧类而不是我的班级。并且该类的父类Magento\Backend\Controller\Adminhtml\Dashboard\RefreshStatistics不存在。

使报告模块保持禁用状态但仍使其起作用的一种解决方案是为读取所有路由并替换上述路由的方法创建一个拦截器。

所以我添加了 di.xml

<type name="Magento\Framework\App\Router\ActionList\Reader">
    <plugin name="namespace-module-route" type="Namespace\Module\Model\Plugin\ActionListReader" sortOrder="100" />
</type>

我的插件如下所示:

<?php
namespace Namespace\Module\Model\Plugin;

class ActionListReader
{
    public function afterRead(\Magento\Framework\App\Router\ActionList\Reader\Interceptor $subject, $actions)
    {
        $actions['magento\backend\controller\adminhtml\dashboard\refreshstatistics'] = 'Namespace\Module\Controller\Adminhtml\Dashboard\RefreshStatistics';
        return $actions;
    }
}

:-如何扩展vendor \ magento \ module-directory \ Model \ PriceCurrency.php convertAndRound(),在这里我需要更改精度,在这种情况下如何使用插件,迫使我在这种情况下使用首选项
Pradeep Kumar

6

不要使用首选项使用插件来扩展di.xml中的任何核心模块

<type name="Magento\Catalog\Controller\Product\View">
    <plugin name="product-cont-test-module" type="Sugarcode\Test\Model\Plugin\Product" sortOrder="10"/>
</type>

并在Product.php中

public function aroundExecute(\Magento\Catalog\Controller\Product\View $subject, \Closure $proceed)
{
    echo 'I Am in Local Controller Before <br>';
    $returnValue = $proceed(); // it get you old function return value
    //$name='#'.$returnValue->getName().'#';
    //$returnValue->setName($name);
    echo 'I Am in Local Controller  After <br>';
    return $returnValue;// if its object make sure it return same object which you addition data
}

如何在Magento2中覆盖核心块,模型和控制器


2
是的,这是最佳做法。但就我而言,我删除了包含一个由我试图覆盖的控制器扩展的类的模块。所以around不会为我工作。我想完全改变原始控制器的行为。
马吕斯

如果您想更改完整的行为,然后再创建一个新操作,然后仅在需要的地方更改url,我希望这将是个好主意
Pradeep Kumar 2015年

2

我有重写控制器的审查模型。composer.json文件:

{
        "name": "apple/module-review",
        "description": "N/A",
        "require": {
            "php": "~5.5.0|~5.6.0|~7.0.0",
            "magento/framework": "100.0.*"
        },
        "type": "magento2-module",
        "version": "100.0.2",
        "license": [
            "OSL-3.0",
            "AFL-3.0"
        ],
        "autoload": {
            "files": [
                "registration.php"
            ],
            "psr-4": {
                "Apple\\Review\\": ""
            }
        }
    }

registration.php文件

    \Magento\Framework\Component\ComponentRegistrar::register(
        \Magento\Framework\Component\ComponentRegistrar::MODULE,
        'Apple_Review',
        __DIR__
    );

app / code / Apple / Review / etc / module.xml文件:

    app/code/Apple/Review/etc/di.xml file for override review controller.
    <?xml version="1.0"?>
    <!--
    /**
     * Copyright © 2015 Magento. All rights reserved.
     * See COPYING.txt for license details.
     */
    -->
    <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">
        <preference for="Magento\Review\Controller\Product\Post" type="Apple\Review\Controller\Post" />   
    </config>

在用于审查模型的控制器文件中,

应用程序/代码/苹果/评论/控制器/Post.php

    use Magento\Review\Controller\Product as ProductController;
    use Magento\Framework\Controller\ResultFactory;
    use Magento\Review\Model\Review;

    class Post extends \Magento\Review\Controller\Product\Post
    {
        public function execute()
        {
           $resultRedirect = $this->resultFactory->create(ResultFactory::TYPE_REDIRECT);
            if (!$this->formKeyValidator->validate($this->getRequest())) {
                $resultRedirect->setUrl($this->_redirect->getRefererUrl());
                return $resultRedirect;
            }

            $data = $this->reviewSession->getFormData(true);
            if ($data) {
                $rating = [];
                if (isset($data['ratings']) && is_array($data['ratings'])) {
                    $rating = $data['ratings'];
                }
            } else {
                $data = $this->getRequest()->getPostValue();
                $rating = $this->getRequest()->getParam('ratings', []);
            }

            if (($product = $this->initProduct()) && !empty($data)) {
                /** @var \Magento\Review\Model\Review $review */
                $review = $this->reviewFactory->create()->setData($data);

                $validate = $review->validate();
                if ($validate === true) {
                    try {
                        $review->setEntityId($review->getEntityIdByCode(Review::ENTITY_PRODUCT_CODE))
                            ->setEntityPkValue($product->getId())
                            ->setStatusId(Review::STATUS_PENDING)
                            ->setCustomerId($this->customerSession->getCustomerId())
                            ->setStoreId($this->storeManager->getStore()->getId())
                            ->setStores([$this->storeManager->getStore()->getId()])
                            ->save();

                        foreach ($rating as $ratingId => $optionId) {
                            $this->ratingFactory->create()
                                ->setRatingId($ratingId)
                                ->setReviewId($review->getId())
                                ->setCustomerId($this->customerSession->getCustomerId())
                                ->addOptionVote($optionId, $product->getId());
                        }

                        $review->aggregate();
                        $this->messageManager->addSuccess(__('You submitted your review for moderation.Thanks'));
                    } catch (\Exception $e) {
                        $this->reviewSession->setFormData($data);
                        $this->messageManager->addError(__('We can\'t post your review right now.'));
                    }
                } else {
                    $this->reviewSession->setFormData($data);
                    if (is_array($validate)) {
                        foreach ($validate as $errorMessage) {
                            $this->messageManager->addError($errorMessage);
                        }
                    } else {
                        $this->messageManager->addError(__('We can\'t post your review right now.'));
                    }
                }
            }
            $redirectUrl = $this->reviewSession->getRedirectUrl(true);
            $resultRedirect->setUrl($redirectUrl ?: $this->_redirect->getRedirectUrl());
            return $resultRedirect;
        }
    }

这是magento2中审阅控制器替代的工作代码。谢谢。


:-使用首选项不是扩展的好方法,请使用插件概念
Pradeep Kumar

@PradeepKumar您能解释为什么使用插件优于使用首选项吗?
罗比·阿夫里尔

@robbie:-它保留原始功能或核心功能,例如,如果magneto2升级并且同一功能发生某些更改,那么我们将失去该部分,因此请选择保留核心logi的插件
Pradeep Kumar

插件是互斥的,而偏好是可重写的-@PradeepKumar是否正确?
罗比·阿夫里尔
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.