function theme_uc_cart_checkout_form in Ubercart 7.3
Same name and namespace in other branches
- 5 uc_cart/uc_cart.module \theme_uc_cart_checkout_form()
- 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
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']);
}