Wednesday, May 5, 2021

Drupal 9 commerce - get product type by product ID

Get product type by product ID:

$product = \Drupal\commerce_product\Entity\Product::load((int)$product_id);
var_dump($product->bundle());

Happy coding!

No comments:

Post a Comment

Wordpress debug log function

Wordpress error log code: if ( ! function_exists ( 'write_log' ) ) { function write_log ( $data ) { if ( defined ( '...