uc_stock_report_form()contributions/ubercart/uc_stock/uc_stock.module, line 278
<?php
function uc_stock_report_form() {
$form['threshold'] = array(
'#type' => 'checkbox',
'#title' => t('Only show SKUs that are below their threshold.'),
'#default_value' => arg(4) == 'threshold' ? TRUE : FALSE,
'#attributes' => array('onchange' => 'this.form.submit();'),
);
$form['submit'] = array(
'#type' => 'submit',
'#value' => t('Submit'),
'#attributes' => array('style' => "display:none;"),
);
return $form;
}
?>