Hook: paymentOptionSelected
Wenn der Nutzer eine Zahlungsmethode wählt
/*
* -- Registration: --
* $GLOBALS['MERCONIS_HOOKS']['paymentOptionSelected'][] = array('myMerconisHookClass', 'myPaymentOptionSelected');
*
* -- Invocation: --
* When the user selects a payment method
*
* -- Parameters: --
* 1. $methodID - the id of the selected payment method
*
* -- Return value: --
* none
*
* -- Objective: --
* e.g. profiling user behaviour
*
*/
public function myPaymentOptionSelected($methodID) {
/*
* Custom code
*/
}