You are here

commerce_line_item_handler_field_line_item_type.inc in Commerce Core 7

File

modules/line_item/includes/views/handlers/commerce_line_item_handler_field_line_item_type.inc
View source
<?php

/**
 * Field handler to translate a line item type into its readable form.
 */
class commerce_line_item_handler_field_line_item_type extends views_handler_field {
  function render($values) {
    $type = $this
      ->get_value($values);
    $value = commerce_line_item_type_get_name($type);
    return $this
      ->sanitize_value($value);
  }

}

Classes

Namesort descending Description
commerce_line_item_handler_field_line_item_type Field handler to translate a line item type into its readable form.