function theme_uc_qty_label in Ubercart 7.3
Displays "Quantity" abbreviated as "Qty".
10 theme calls to theme_uc_qty_label()
- theme_uc_cart_review_table in uc_cart/
uc_cart_checkout_pane.inc - Formats the cart contents table on the checkout page.
- theme_uc_shipping_edit_package_fieldset in shipping/
uc_shipping/ uc_shipping.admin.inc - Displays a formatted shipping type fieldset.
- theme_uc_shipping_new_package_fieldset in shipping/
uc_shipping/ uc_shipping.admin.inc - Formats and displays the products in a shipping type fieldset.
- uc_cart_view_table in uc_cart/
uc_cart.module - Lists the products in the cart in a TAPIr table.
- uc_op_products_customer_table in uc_order/
uc_order.order_pane.inc - Builds the order customer's view products table.
File
- uc_store/
uc_store.theme.inc, line 31 - Theme functions for the uc_store module.
Code
function theme_uc_qty_label() {
return '<abbr title="' . t('Quantity') . '">' . t('Qty') . '</abbr>';
}