You are here

function uc_order_page_title in Ubercart 6.2

Same name and namespace in other branches
  1. 7.3 uc_order/uc_order.module \uc_order_page_title()

Title callback for admin/store/orders/%uc_order.

1 string reference to 'uc_order_page_title'
uc_order_menu in uc_order/uc_order.module
Implements hook_menu().

File

uc_order/uc_order.module, line 353

Code

function uc_order_page_title($order) {
  return t('Order @order_id', array(
    '@order_id' => $order->order_id,
  ));
}