Utilisation de l'injection de dépendance (DI)
Voici l'exemple de code pour obtenir les informations produit par ID de produit et SKU dans Magento 2 à l'aide de l'injection de dépendance.
Dans ce cas, nous pourrions avoir besoin d'injecter l'objet de la classe \ Magento \ Catalog \ Model \ ProductRepository dans le constructeur de la classe de bloc de notre module et d'y accéder à partir du fichier de vue (.phtml).
Exemple de chemin de fichier: app / code / YourCompanyName / YourModuleName / Block / YourCustomBlock.php
<?php
namespace YourCompanyName\YourModuleName\Block;
class YourCustomBlock extends \Magento\Framework\View\Element\Template
{
protected $_productRepository;
public function __construct(
\Magento\Framework\View\Element\Template\Context $context,
\Magento\Catalog\Model\ProductRepository $productRepository,
array $data = []
) {
$this->_productRepository = $productRepository;
parent::__construct($context, $data);
}
public function getProductById($id) {
return $this->_productRepository->getById($id);
}
public function getProductBySku($sku) {
return $this->_productRepository->get($sku);
}
}
Maintenant, nous pouvons utiliser les fonctions de notre fichier de vue (.phtml) comme suit.
// get product by id
$product = $block->getProductById(15);
// get product by sku
$product = $block->getProductBySku('MT12');
echo $product->getEntityId() . '<br>';
echo $product->getName() . '<br>';
echo $product->getSKU() . '<br>';
echo $product->getPrice() . '<br>';
echo $product->getSpecialPrice() . '<br>';
echo $product->getTypeId() . '<br>';
echo $product->getProductUrl() . '<br>';
Utilisation du gestionnaire d'objets
Voici l'exemple de code pour obtenir les informations produit par ID produit et SKU dans Magento 2 à l'aide du gestionnaire d'objets.
$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
$productRepository = $objectManager->get('\Magento\Catalog\Model\ProductRepository');
// get product by product id
$product = $productRepository->getById(15);
// get product by product sku
$product = $productRepository->get('MT12');
echo $product->getEntityId() . '<br>';
echo $product->getName() . '<br>';
echo $product->getSKU() . '<br>';
echo $product->getPrice() . '<br>';
echo $product->getSpecialPrice() . '<br>';
echo $product->getTypeId() . '<br>';
echo $product->getProductUrl() . '<br>';