You are here

function pay_method_direct::direct_response in Pay 7

Same name and namespace in other branches
  1. 6 includes/handlers/pay_method_direct.inc \pay_method_direct::direct_response()

This method will be called on a return response (e.g. PayPal IPN) including an unfiltered version of the $_REQUEST array. This method must be extended in order for your direct method to work!

1 call to pay_method_direct::direct_response()
pay_method_direct::response_action in includes/handlers/pay_method_direct.inc
Implement a 'response' action, which interprets the response from a direct payment gateway.

File

includes/handlers/pay_method_direct.inc, line 23
The base class for 'direct' payment activities, where payments are collected on third-party sites such as PayPal, and the responses are returned to Drupal on a URL callback.

Class

pay_method_direct
@file The base class for 'direct' payment activities, where payments are collected on third-party sites such as PayPal, and the responses are returned to Drupal on a URL callback.

Code

function direct_response($response = array()) {
}