You are here

function theme_uc_product_form_weight in Ubercart 5

Same name and namespace in other branches
  1. 6.2 uc_product/uc_product.module \theme_uc_product_form_weight()
1 theme call to theme_uc_product_form_weight()
uc_product_form in uc_product/uc_product.module
Implementation of hook_form().

File

uc_product/uc_product.module, line 612
The product module for Ubercart.

Code

function theme_uc_product_form_weight($form) {
  return '<table><tr><td>' . drupal_render($form['weight']) . '</td><td>' . drupal_render($form['weight_units']) . '</td></tr></table>';
}