예제 #1
0
function watupro_liveresult()
{
    global $wpdb, $user_ID;
    $_watu = new WatuPRO();
    $_question = new WTPQuestion();
    // select exam
    $exam = $wpdb->get_row($wpdb->prepare("SELECT * FROM " . WATUPRO_EXAMS . " WHERE ID=%d", $_POST['quiz_id']));
    $_watu->this_quiz = $exam;
    $advanced_settings = unserialize(stripslashes($exam->advanced_settings));
    if (watupro_intel()) {
        WatuPROIQuestion::$advanced_settings = $advanced_settings;
        WTPQuestion::$advanced_settings = $advanced_settings;
    }
    $questions = watupro_unserialize_questions($_POST['watupro_questions']);
    // find current question
    $ques = null;
    foreach ($questions as $question) {
        if ($question->ID == $_POST['question_id']) {
            $ques = $question;
        }
    }
    if (!is_object($ques)) {
        die(__("Sorry, we couldn't retrieve the answer", 'watupro'));
    }
    $ansArr = is_array($_POST["answer-" . $ques->ID]) ? $_POST["answer-" . $ques->ID] : array();
    list($points, $correct) = WTPQuestion::calc_answer($ques, $ansArr, $ques->q_answers);
    list($answer_text, $current_text, $unresolved_text) = $_question->process($_watu, $_POST['question_num'], $ques->question, $ques, $ansArr, $correct, $points);
    $current_text = apply_filters('watupro_content', $current_text);
    echo $current_text;
    // now save it in the user answers details if user is logged in
    if (is_user_logged_in()) {
        $taking_id = $_watu->add_taking($exam->ID, 1);
        $answer = serialize($_POST['answer-' . $_POST['question_id']]);
        // we need to store the serialized answer here
        $_watu->store_details($exam->ID, $taking_id, $ques->ID, $answer, $points, $ques->question, $correct, $current_text);
    }
    exit;
}
예제 #2
0
 if ($ques->answer_type == 'gaps') {
     $question_content = preg_replace("/{{{([^}}}])*}}}/", "_____", $question_content);
 }
 $ansArr = is_array(@$_POST["answer-" . $ques->ID]) ? $_POST["answer-" . $ques->ID] : array();
 // points and correct calculation
 list($points, $correct) = WTPQuestion::calc_answer($ques, $ansArr, $ques->q_answers, $user_grade_ids);
 $max_points += WTPQuestion::max_points($ques);
 // handle sorting personalities
 if ($exam->is_personality_quiz and $ques->answer_type == 'sort' and watupro_intel()) {
     WatuPROIQuestion::sort_question_personality($ques, $ansArr, $user_grade_ids);
 }
 // discard points?
 if ($points and !$correct and $ques->reward_only_correct) {
     $points = 0;
 }
 list($answer_text, $current_text, $unresolved_text) = $_question->process($_watu, $qct, $question_content, $ques, $ansArr, $correct, $points);
 $unresolved_questions .= str_replace('[[watupro-resolvedclass]]', '', $unresolved_text);
 // replace the resolved class
 if ($correct) {
     $current_text = str_replace('[[watupro-resolvedclass]]', 'watupro-resolved', $current_text);
 } else {
     $current_text = str_replace('[[watupro-resolvedclass]]', 'watupro-unresolved', $current_text);
 }
 if (empty($ques->exclude_on_final_screen)) {
     $result .= $current_text;
 }
 // insert taking data
 $_watu->store_details($exam->ID, $taking_id, $ques->ID, $answer_text, $points, $ques->question, $correct, $current_text);
 if ($correct) {
     $score++;
 }