You are here

function uc_reports_products_custom_form_validate in Ubercart 6.2

Same name and namespace in other branches
  1. 5 uc_reports/uc_reports.module \uc_reports_products_custom_form_validate()
  2. 7.3 uc_reports/uc_reports.admin.inc \uc_reports_products_custom_form_validate()

File

uc_reports/uc_reports.admin.inc, line 526
Reports administration menu items.

Code

function uc_reports_products_custom_form_validate($form, &$form_state) {
  if (empty($form_state['values']['status'])) {
    form_set_error('status', t('You must select at least one order status.'));
  }
}