You are here

uc_views_handler_field_order_status.inc in Ubercart Views 6.3

Same filename and directory in other branches
  1. 6.2 views/uc_views_handler_field_order_status.inc

Views handler: Order status field.

File

views/uc_views_handler_field_order_status.inc
View source
<?php

/**
 * @file
 * Views handler: Order status field.
 */

/**
 * Return a human readable text for order status to display in the View.
 */
class uc_views_handler_field_order_status extends views_handler_field {
  function render($values) {
    return uc_order_status_data($values->{$this->field_alias}, 'title');
  }

}

Classes

Namesort descending Description
uc_views_handler_field_order_status Return a human readable text for order status to display in the View.