Użyłem zarówno wtyczki, jak i preferencji w tutorialu magento2 i oba działają dobrze, ale jaka jest podstawowa różnica między nimi.
Kod wtyczki:
1.1) Dodaj deklarację wtyczki do di.xml:
<type name="Magento\Catalog\Model\Product">
<plugin name="magento-catalog-product-plugin" type="Training\Test\Model\Product" sortOrder="10"/>
</type>
1.2) Utwórz klasę wtyczek:
<?php
namespace Training\Test\Model;
class Product {
public function afterGetPrice(\Magento\Catalog\Model\Product $product, $result) {
return 5;
}
}
Kod preferencji:
2.1) Utwórz deklarację preferencji:
<preference for="Magento\Catalog\Model\Product"
type="Training\Test\Model\Testproduct" />
2.2) Utwórz nową klasę produktu:
<?php
namespace Training\Test\Model;
class Testproduct extends \Magento\Catalog\Model\Product
{
public function getPrice() {
return 3;
}
}