You are here

function commerce_payment_ui_payment_transaction_view in Commerce Core 7

Displays the full details of a payment transaction.

1 string reference to 'commerce_payment_ui_payment_transaction_view'
commerce_payment_ui_menu in modules/payment/commerce_payment_ui.module
Implements hook_menu().

File

modules/payment/includes/commerce_payment_ui.admin.inc, line 99
Administrative page callbacks for the Payment UI module.

Code

function commerce_payment_ui_payment_transaction_view($order, $transaction, $view_mode) {
  return entity_view('commerce_payment_transaction', array(
    $transaction->transaction_id => $transaction,
  ), $view_mode, NULL, TRUE);
}