You are here

i18n_commerce_product_line_item_handler_field_line_item_title.inc in Internationalization for commerce product 7

.

File

includes/views/handlers/i18n_commerce_product_line_item_handler_field_line_item_title.inc
View source
<?php

/**
 * @file.
 */

/**
 * Class i18n_commerce_product_line_item_handler_field_line_item_title.
 */
class i18n_commerce_product_line_item_handler_field_line_item_title extends views_handler_field {
  function construct() {
    parent::construct();
    $this->additional_fields['line_item_id'] = 'line_item_id';
  }
  function query() {
    $this
      ->ensure_my_table();
    $this
      ->add_additional_fields();
  }
  function render($values) {

    // Load the line item and return its title.
    $line_item_id = $this
      ->get_value($values, 'line_item_id');
    $line_item = commerce_line_item_load($line_item_id);
    return i18n_commerce_product_line_item_title($line_item);
  }

}

Classes

Namesort descending Description
i18n_commerce_product_line_item_handler_field_line_item_title Class i18n_commerce_product_line_item_handler_field_line_item_title.