You are here

function commerce_order_handler_field_order_state::construct in Commerce Core 7

Construct a new field handler.

Overrides views_handler_field::construct

File

modules/order/includes/views/handlers/commerce_order_handler_field_order_state.inc, line 7

Class

commerce_order_handler_field_order_state
Field handler to translate an order state into its readable form.

Code

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