function pay_method_gateway::cancel_action in Pay 7
Same name and namespace in other branches
- 6 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 94 - 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();
}