You are here

function uc_restrict_qty_theme in Ubercart Restrict Qty 6.2

Same name and namespace in other branches
  1. 6 uc_restrict_qty.module \uc_restrict_qty_theme()
  2. 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 specified quantity may be purchased at a time.

Code

function uc_restrict_qty_theme() {
  return array(
    'restrict_qty_field' => array(
      'arguments' => array(
        'form' => NULL,
      ),
    ),
  );
}