You are here

function short_answer_score_form_validate in Quiz 6.5

Same name and namespace in other branches
  1. 8.4 question_types/short_answer/short_answer.admin.inc \short_answer_score_form_validate()
  2. 6.6 question_types/short_answer/short_answer.admin.inc \short_answer_score_form_validate()
  3. 6.3 question_types/short_answer/short_answer.admin.inc \short_answer_score_form_validate()
  4. 6.4 question_types/short_answer/short_answer.admin.inc \short_answer_score_form_validate()
  5. 7.6 question_types/short_answer/short_answer.admin.inc \short_answer_score_form_validate()
  6. 7 question_types/short_answer/short_answer.admin.inc \short_answer_score_form_validate()
  7. 7.4 question_types/short_answer/short_answer.admin.inc \short_answer_score_form_validate()

File

question_types/short_answer/short_answer.admin.inc, line 125
short_answer.admin

Code

function short_answer_score_form_validate($form, $form_state) {

  // Check to make sure that entered score is not higher than max allowed score.
  $max = (int) $form_state['values']['maximum_score'];
  $given = (int) $form_state['values']['score'];
  if ($given > $max || $given < 0) {
    $args = array(
      '@score' => $given,
      '@max' => $max,
    );
    form_error($form['score'], t('The given score (@score) is higher than the maximum allowed score (@max)', $args));
  }
}