function uc_restrict_qty_theme in Ubercart Restrict Qty 6
Same name and namespace in other branches
- 6.2 uc_restrict_qty.module \uc_restrict_qty_theme()
 - 7 uc_restrict_qty.module \uc_restrict_qty_theme()
 
Implementation of hook_theme().
File
- ./
uc_restrict_qty.module, line 13  - Restrict the quantity on specified products so that only one may be purchased at a time.
 
Code
function uc_restrict_qty_theme() {
  return array(
    'restrict_qty_field' => array(
      'arguments' => array(
        'form' => NULL,
      ),
    ),
  );
}