How to get manufacturer details by id in PrestaShop 1.7

In this post I am going to explain how to get manufacturer details by id in PrestaShop 1.7.

// Your manufacturer id
$id_manufacturer = 1;

// Language id
$id_lang = (int) Configuration::get('PS_LANG_DEFAULT');

// Load manufacturer object
$manufacturer = new Manufacturer($id_manufacturer, $id_lang);

// Validate manufacturer object
if (Validate::isLoadedObject($manufacturer)) {
	// Print manufacturer name
	echo $manufacturer->name;

	// Print manufacturer description
	echo $manufacturer->description;

	// Print manufacturer Object
	echo "<pre>";
	print_r($manufacturer);
	echo "</pre>";
}

 

1 Comment

  1. This is very valuable blog shared, thanks for sharing!

Leave a Reply

Your email address will not be published. Required fields are marked *