You are here

function _get_order_screen_titles in Ubercart 6.2

Same name and namespace in other branches
  1. 5 uc_order/uc_order.module \_get_order_screen_titles()

Helper function for order page local tasks.

1 call to _get_order_screen_titles()
uc_order_panes_form in uc_order/uc_order.admin.inc
Settings for the order panes.

File

uc_order/uc_order.module, line 1610

Code

function _get_order_screen_titles() {
  $titles = array(
    'view' => t('View'),
    'edit' => t('Edit'),
    'invoice' => t('Invoice'),
    'customer' => t('Customer'),
  );
  return $titles;
}