You are here

function theme_uc_cart_checkout_form in Ubercart 7.3

Same name and namespace in other branches
  1. 5 uc_cart/uc_cart.module \theme_uc_cart_checkout_form()
  2. 6.2 uc_cart/uc_cart.pages.inc \theme_uc_cart_checkout_form()

Default theme function for the checkout form.

Parameters

$variables: An associative array containing:

  • form: A render element representing the form.

See also

uc_cart_checkout_form()

File

uc_cart/uc_cart.pages.inc, line 325
Cart menu items.

Code

function theme_uc_cart_checkout_form($variables) {
  return drupal_render_children($variables['form']);
}