You are here

function uc_order_uri in Ubercart 7.3

Entity API "uri callback" for uc_order entity.

Parameters

$order: The order to return the URI for.

1 string reference to 'uc_order_uri'
uc_order_entity_info in uc_order/uc_order.module
Implements hook_entity_info().

File

uc_order/uc_order.module, line 871

Code

function uc_order_uri($order) {
  return array(
    'path' => 'admin/store/orders/' . $order->order_id,
  );
}