You are here

function commerce_payment_handler_field_payment_transaction_link::construct in Commerce Core 7

Construct a new field handler.

Overrides views_handler_field::construct

File

modules/payment/includes/views/handlers/commerce_payment_handler_field_payment_transaction_link.inc, line 7

Class

commerce_payment_handler_field_payment_transaction_link
Field handler to present a link to a payment transaction.

Code

function construct() {
  parent::construct();
  $this->additional_fields['transaction_id'] = 'transaction_id';
  $this->additional_fields['order_id'] = 'order_id';
}