Hook: shippingOptionSelected

Wenn der Nutzer eine Versandmethode wählt

/*
 * -- Registration: --
 * $GLOBALS['MERCONIS_HOOKS']['shippingOptionSelected'][] = array('myMerconisHookClass', 'myShippingOptionSelected');
 *
 * -- Invocation: --
 * When the user selects a shipping method
 *
 * -- Parameters: --
 *	1. $methodID - the id of the selected shipping method
 *
 * -- Return value: --
 * none
 *
 * -- Objective: --
 * e.g. profiling user behaviour
 *  
 */

public function myShippingOptionSelected($methodID) {

	/*
	 * Custom code
	 */

}