You are here

function uc_restrict_qty_theme in Ubercart Restrict Qty 7

Same name and namespace in other branches
  1. 6.2 uc_restrict_qty.module \uc_restrict_qty_theme()
  2. 6 uc_restrict_qty.module \uc_restrict_qty_theme()

Implements hook_theme().

File

./uc_restrict_qty.module, line 13
Restrict the quantity on specified products so that only specified quantity may be purchased at a time.

Code

function uc_restrict_qty_theme() {
  return array(
    'restrict_qty_field' => array(
      'render element' => 'form',
    ),
  );
}