function pay_method_gateway::cancel_action in Pay 6
Same name and namespace in other branches
- 7 includes/handlers/pay_method_gateway.inc \pay_method_gateway::cancel_action()
Cancel a transaction.
Overrides pay_method::cancel_action
File
- includes/handlers/ pay_method_gateway.inc, line 92 
- The base class for credit card payment activities.
Class
- pay_method_gateway
- @file The base class for credit card payment activities.
Code
function cancel_action() {
  // TODO - If there's anything to void, void it!
  return parent::cancel_action();
}