You are here

function theme_uc_cart_complete_sale in Ubercart 7.3

Same name and namespace in other branches
  1. 6.2 uc_cart/uc_cart.module \theme_uc_cart_complete_sale()

Themes the sale completion page.

Parameters

$variables: An associative array containing:

  • message: Message containing order number info, account info, and link to continue shopping.
1 theme call to theme_uc_cart_complete_sale()
uc_cart_complete_sale in uc_cart/uc_cart.module
Completes a sale, including adjusting order status and creating user account.

File

uc_cart/uc_cart.theme.inc, line 296
Theme functions for the uc_cart module.

Code

function theme_uc_cart_complete_sale($variables) {
  return $variables['message'];
}