3
Magento2: Eklenti ve tercih arasındaki temel fark nedir?
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, …