You are here

function commerce_line_item_type_title in Commerce Core 7

Title callback: return the human-readable line item type name.

File

modules/line_item/commerce_line_item.module, line 534
Defines the core Commerce line item entity and API functions interact with line items on orders.

Code

function commerce_line_item_type_title($line_item_type) {
  return $line_item_type['name'];
}