My goal is to discount items according to role using a hook.
I've created a hook in my module, bg_helper:
function bg_helper_uc_price_handler() {
print "at hook";
return array(
'alter' => array(
'title' => t('My price handler'),
'description' => t('Handles my price alteration needs.'),
'callback' => 'my_price_handler_alter',
)
);
}
function my_price_handler_alter () {
print "at price handler";
}
The my_price_handler_alter() function gets called, but I cannot find
the documentation that tells me what the arguments are for the callback.
Can someone please tell me what arguments are passed to the price
alteration callback?
Thanks for your help.

