You are here

public function commerce_shipping_handler_relationship_shipping_line_item_representative::label in Commerce Shipping 7.2

Get this field's label.

Overrides views_handler_relationship::label

File

includes/views/handlers/commerce_shipping_handler_relationship_shipping_line_item_representative.inc, line 10
Order relationship to a representative line item.

Class

commerce_shipping_handler_relationship_shipping_line_item_representative
@file Order relationship to a representative line item.

Code

public function label() {
  if (!isset($this->options['label'])) {
    return $this
      ->ui_name();
  }
  return $this->options['label'];
}