i defined a checkout pane with hook_order_pane, and my callback is being invoked when cart/checkout loads with $op = 'view', but $arg1 and $arg2 are always null, when http://www.ubercart.org/docs/developer/245/checkout indicates that $arg1 should reference the order object.
Comments
Comment #1
rszrama commentedThere shouldn't be an order object the first time it's loaded, only on subsequent page loads. The order object doesn't get created till the user submits the checkout form, and if they should go "Back" from the review form it will be present. This is what the docs mean when they say:
Comment #2
aaronbaumanI see - that makes sense now. thanks for the quick response.