Magento2 eğitiminde hem eklenti hem de tercih kullandım ve her ikisi de iyi çalışıyor, ancak aralarındaki temel fark nedir.
Eklenti kodu:
1.1) di.xml dosyasına bir eklenti bildirimi ekleyin:
<type name="Magento\Catalog\Model\Product">
<plugin name="magento-catalog-product-plugin" type="Training\Test\Model\Product" sortOrder="10"/>
</type>
1.2) Bir eklenti sınıfı oluşturun:
<?php
namespace Training\Test\Model;
class Product {
public function afterGetPrice(\Magento\Catalog\Model\Product $product, $result) {
return 5;
}
}
Tercih için kod:
2.1) Bir tercih beyanı oluşturun:
<preference for="Magento\Catalog\Model\Product"
type="Training\Test\Model\Testproduct" />
2.2) Yeni bir Ürün sınıfı oluşturun:
<?php
namespace Training\Test\Model;
class Testproduct extends \Magento\Catalog\Model\Product
{
public function getPrice() {
return 3;
}
}