You are here

uc_views_handler_field_order_actions.inc in Ubercart Views 6.3

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

Views handler: Return actions for order id - by justindodge

File

views/uc_views_handler_field_order_actions.inc
View source
<?php

/**
 * @file
 * Views handler: Return actions for order id - by justindodge
 */

/**
 * Return actions for an order
 */
class uc_views_handler_field_order_actions extends views_handler_field {
  function render($values) {
    $order = uc_order_load($values->{$this->field_alias});
    return uc_order_actions($order, true);
  }

}

Classes

Namesort descending Description
uc_views_handler_field_order_actions Return actions for an order