Merge pull request #670 from gr4devel/patch-2

[+] FO : add getManufacturer() to ManufacturerControllerCore
This commit is contained in:
Gregory Roussac
2013-09-02 01:31:14 -07:00
+9 -1
View File
@@ -134,4 +134,12 @@ class ManufacturerControllerCore extends FrontController
else
$this->context->smarty->assign('nbManufacturers', 0);
}
}
/**
* Get instance of current manufacturer
*/
public function getManufacturer()
{
return $this->manufacturer;
}
}