Allows to display custom partials in the header of the Product Details page in the Administration Area.
The event handler should accept two parameters - the controller object and the product object.
public function subscribeEvents()
{
Backend::$events->addEvent('shop:onExtendProductPreviewHeader', $this, 'extend_product_preview_header');
}
public function extend_product_preview_header($controller, $product)
{
$controller->renderPartial(PATH_APP.'/modules/mymodule/partials/_product_preview_header.htm');
}