Hook: beforeProductSingleviewOutput
Bevor ein Produkt in der Detailansicht ausgegeben wird
/*
* -- Registration: --
* $GLOBALS['MERCONIS_HOOKS']['beforeProductSingleviewOutput'][] = array('myMerconisHookClass', 'myBeforeProductSingleviewOutput');
*
* -- Invocation: --
* Before a product is displayed in the singleview.
*
* -- Parameters: --
* 1. $productID - the id of the product to be displayed in the singleview
*
* -- Return value: --
* none
*
* -- Objective: --
* e.g. profiling user behaviour
*
*/
public function myBeforeProductSingleviewOutput($productID) {
/*
* Custom code
*/
}