You are here

function _get_order_screen_titles in Ubercart 5

Same name and namespace in other branches
  1. 6.2 uc_order/uc_order.module \_get_order_screen_titles()
2 calls to _get_order_screen_titles()
uc_order_panes_form in uc_order/uc_order.module
uc_order_settings_overview in uc_order/uc_order.module
Display the order settings overview.

File

uc_order/uc_order.module, line 2882

Code

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