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ถูกล้าง


สิ่งนี้อาจช่วยstackoverflow.com/questions/29654718/…
Tim Hallman

1
@TimHallman ขอบคุณ แต่ฉันไม่ต้องการเขียนเราเตอร์เพียงแค่นี้ ฉันแน่ใจว่ามีวิธีทำความสะอาดที่ดีกว่า
Marius

คำตอบ:


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\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 \ โมดูลไดเรกทอรี \ 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
}

วิธีการแทนที่ Core Block รุ่นและคอนโทรลเลอร์ใน Magento2


2
ใช่นี่เป็นวิธีปฏิบัติที่ดีที่สุด แต่ในกรณีของฉันฉันลบโมดูลที่มีคลาสที่ขยายเพิ่มโดยคอนโทรลเลอร์ที่ฉันพยายามจะแทนที่ ดังนั้นaroundจะไม่ทำงานสำหรับฉัน ฉันต้องการเปลี่ยนพฤติกรรมของคอนโทรลเลอร์เดิมอย่างสมบูรณ์
Marius

ถ้าคุณต้องการที่จะเปลี่ยนพฤติกรรมที่สมบูรณ์แล้วสร้างอีกหนึ่งการกระทำใหม่แล้วเพียงแค่เปลี่ยน 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\\": ""
            }
        }
    }

ไฟล์ register.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 / รหัส / แอปเปิ้ล / ทบทวน / ควบคุม / 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 Averill

@robbie: - มันเก็บฟังก์ชั่นดั้งเดิมหรือหลักเช่นถ้าอัพเกรด magneto2 และการเปลี่ยนแปลงบางอย่างที่เกิดขึ้นในฟังก์ชั่นเดียวกันจากนั้นเราจะสูญเสียส่วนนั้นดังนั้นไปสำหรับปลั๊กอินมันเก็บหลัก logi
Pradeep Kumar

ปลั๊กอินไม่สามารถใช้ร่วมกันโดยเฉพาะในขณะที่การตั้งค่าเป็น rewrite- ที่ถูกต้อง @PradeepKumar?
Robbie Averill
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.