You are here

function theme_uc_product_feature_add_form in Ubercart 5

Same name and namespace in other branches
  1. 6.2 uc_product/uc_product.admin.inc \theme_uc_product_feature_add_form()
  2. 7.3 uc_product/uc_product.admin.inc \theme_uc_product_feature_add_form()

File

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

Code

function theme_uc_product_feature_add_form($form) {
  $output = '<table class="add-feature"><tr><td>' . drupal_render($form) . '</td></tr></table>';
  return $output;
}