You are here

function theme_uc_qty in Ubercart 7.3

Displays a quantity.

Parameters

$variables: An associative array containing:

  • qty: The quantity to display.
4 theme calls to theme_uc_qty()
theme_uc_product_kit_list_item in uc_product_kit/uc_product_kit.theme.inc
Renders a product kit component.
UcOrderProductController::buildContent in uc_order/uc_order.controller.inc
Overrides EntityAPIController::buildContent().
uc_cart_block_view in uc_cart/uc_cart.module
Implements hook_block_view().
uc_order_tokens in uc_order/uc_order.tokens.inc
Implements hook_tokens().

File

uc_store/uc_store.theme.inc, line 44
Theme functions for the uc_store module.

Code

function theme_uc_qty($variables) {
  return $variables['qty'] . ' ×';
}