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/cacheそしてvar/generationクリアされました。



1
@TimHallman。ありがとう、しかしこれだけのためにルーターを書きたくありません。もっときれいな方法があると確信しています。
マリウス

回答:


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;
    }
}

: -拡張する方法ベンダー\ Magentoの\モデル\ PriceCurrency.php convertAndRound()は、ここで私はそれがこのケースでプリファレンスを使用するために私を強制プラグインの使用方法この場合には、変更の精度に必要な\モジュールディレクトリ
プラディープ・クマール

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私にはうまくいきません。元のコントローラーの動作を完全に変更したかった。
マリウス

完全な動作を変更したい場合は、もう1つ新しいアクションを作成し、必要に応じてURLを変更します。これが良いアイデアになることを願っています
Pradeep Kumar

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>

レビューモデルのコントローラーファイルで、

app / code / Apple / Review / Controller / 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のレビューコントローラーオーバーライド用の作業コードです。ありがとう。


: -プリファレンスを使用して拡張するための良い方法、使用プラグインの概念ではない
プラディープ・クマール

@PradeepKumarでは、プリファレンスを使用するよりもプラグインを使用する方が望ましい理由を説明できますか?
ロビーアヴェリル

@robbie: -その後、私たちはそれがコアLOGIを保持プラグインのために行く、その部分を失うことになるmagneto2がアップグレードした場合には、オリジナルやコアな機能、EXを維持し、いくつかの変更は、同じ機能で起こる
プラディープ・クマール

プラグインは相互に排他的ですが、プリファレンスは書き換えです-正しい@PradeepKumarですか?
ロビーアヴェリル
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.