มีสองขั้นตอนในการแทนที่ไฟล์ Block, Model และ Controller
1) เพิ่มการตั้งค่าใน di.xml
2) สร้างไฟล์ block, model และ controller ในโมดูลของคุณ
Namespace: Prince
ชื่อโมดูล: Helloworld
ตัวอย่างเช่นการแทนที่แคตตาล็อกผลิตภัณฑ์ ListProduct
1) สร้างไฟล์di.xmlในโฟลเดอร์Prince/Helloworld/etc
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">
<preference for="Magento\Catalog\Model\Product" type="Prince\Helloworld\Model\Rewrite\Catalog\Product" />
</config>
2) สร้างListProduct.phpในโฟลเดอร์Prince/Helloworld/Block/Rewrite/Product
<?php
namespace Prince\Helloworld\Block\Rewrite\Product;
class ListProduct extends \Magento\Catalog\Block\Product\ListProduct
{
public function _getProductCollection()
{
// Do your code here
}
}
ตัวอย่างเช่นแทนที่โมเดลผลิตภัณฑ์แค็ตตาล็อก
1) เพิ่มการตั้งค่าในdi.xmlที่Prince/Helloworld/etc
<preference for="Magento\Catalog\Model\Product" type="Prince\Helloworld\Model\Rewrite\Catalog\Product" />
2) สร้างไฟล์ Product.php Model ในโฟลเดอร์ Prince/Helloworld/Model/Rewrite/Catalog
<?php
namespace Prince\Helloworld\Model\Rewrite\Catalog;
class Product extends \Magento\Catalog\Model\Product
{
public function isSalable()
{
// Do your code here
return parent::isSalable();
}
}
เอาชนะคอนโทรลเลอร์
1) เพิ่มการตั้งค่าในdi.xmlที่Prince/Helloworld/etc
<preference for="Magento\Catalog\Controller\Product\View" type="Prince\Helloworld\Controller\Rewrite\Product\View" />
2) สร้างView.phpในโฟลเดอร์Prince/Helloworld/Controller/Rewrite/Product
class View extends \Magento\Catalog\Controller\Product\View
{
public function execute()
{
// Do your stuff here
return parent::execute();
}
}
คุณสามารถแทนที่บล็อกรุ่นและคอนโทรลเลอร์อื่น ๆ ได้โดยใช้วิธีการเดียวกัน