You are here

function voting_rules_condition_check_results_validate in Voting Rules 6

Voting Rules check vote result configuration form validation function

File

./voting_rules.rules.inc, line 269
Provides Rules integration for the Votingapi module

Code

function voting_rules_condition_check_results_validate($form, $form_state) {
  if (!is_numeric($form_state['values']['settings']['value'])) {
    form_set_error('settings][value', 'Value must be numeric.');
  }
}