7 uc_authorizenet.api.php | hook_uc_authorizenet_transaction_alter(&$data) |
Allows transaction data to be altered before sending to Authorize.net.
Parameters
$data: The transaction data as specified by the Authorize.net API.
Related topics
1 invocation of hook_uc_authorizenet_transaction_alter()
File
- ubercart/
payment/ uc_authorizenet/ uc_authorizenet.api.php, line 19 - Hooks provided by the Authorize.net module.
Code
function hook_uc_authorizenet_transaction_alter(&$data) {
$data['x_description'] = 'Custom Authorize.Net transaction description.';
}