class TrueFalseResponse in Quiz 8.4
Hierarchy
- class \Drupal\quiz_question\QuizQuestionResponse- class \Drupal\truefalse\TrueFalseResponse
 
Expanded class hierarchy of TrueFalseResponse
File
- question_types/truefalse/ lib/ Drupal/ truefalse/ TrueFalseResponse.php, line 12 
Namespace
Drupal\truefalseView source
class TrueFalseResponse extends QuizQuestionResponse {
  /**
   * Constructor
   */
  public function __construct($result_id, $question_node, $answer = NULL) {
    parent::__construct($result_id, $question_node, $answer);
    if (!isset($answer)) {
      $r = $this
        ->getCorrectAnswer();
      if (!empty($r)) {
        $this->answer = $r->answer;
        $this->score = $r->score;
      }
    }
    else {
      $this->answer = $answer;
    }
  }
  /**
   * Implementation of isValid
   *
   * @see QuizQuestionResponse#isValid()
   */
  public function isValid() {
    return $this->answer === NULL ? t('You must provide an answer') : TRUE;
  }
  /**
   * Implementation of save
   *
   * @see QuizQuestionResponse#save()
   */
  public function save() {
    db_insert('quiz_truefalse_user_answers')
      ->fields(array(
      'question_nid' => $this->question
        ->id(),
      'question_vid' => $this->question
        ->getRevisionId(),
      'result_id' => $this->rid,
      'answer' => (int) $this->answer,
      'score' => (int) $this
        ->getScore(),
    ))
      ->execute();
  }
  /**
   * Implementation of delete
   *
   * @see QuizQuestionResponse#delete()
   */
  public function delete() {
    db_delete('quiz_truefalse_user_answers')
      ->condition('question_nid', $this->question
      ->id())
      ->condition('question_vid', $this->question
      ->getRevisionId())
      ->condition('result_id', $this->rid)
      ->execute();
  }
  /**
   * Implementation of score
   *
   * @see QuizQuestionResponse#score()
   */
  public function score() {
    $tfQuestion = new TrueFalseQuestion($this->question);
    return $this
      ->getResponse() == $tfQuestion
      ->getCorrectAnswer() ? 1 : 0;
  }
  /**
   * Implementation of getResponse
   *
   * @see QuizQuestionResponse#getResponse()
   */
  public function getResponse() {
    if (!isset($this->answer)) {
      $correct_answer = $this
        ->getCorrectAnswer();
      $this->answer = isset($correct_answer->answer) ? $correct_answer->answer : NULL;
    }
    return $this->answer;
  }
  /**
   * Implementation of getCorrectAnswer
   */
  public function getCorrectAnswer() {
    if ($this->question instanceof \stdClass) {
      $params = array(
        ':qvid' => $this->question->vid,
        ':rid' => $this->rid,
      );
    }
    else {
      $params = array(
        ':qvid' => $this->question
          ->getRevisionId(),
        ':rid' => $this->rid,
      );
    }
    return db_query('SELECT answer, score FROM {quiz_truefalse_user_answers} WHERE question_vid = :qvid AND result_id = :rid', $params)
      ->fetch();
  }
  /**
   * Implementation of getReportFormResponse
   *
   * @see QuizQuestionResponse#getReportFormResponse($showpoints, $showfeedback, $allow_scoring)
   */
  public function getReportFormResponse($showpoints = TRUE, $showfeedback = TRUE, $allow_scoring = FALSE) {
    if (empty($this->question->answers)) {
      return array(
        '#markup' => t('Missing question.'),
      );
    }
    $metadata = array();
    $data = array();
    // Build the question answers header (add blank space for IE).
    if ($showpoints) {
      $metadata[] = t('Correct Answer');
    }
    $metadata[] = t('User answer');
    if ($showfeedback && !empty($this->question->feedback)) {
      $metadata[] = 'Feedback';
    }
    $answer = $this->question->answers[0];
    $correct_answer = $answer['is_correct'] ? $answer['answer'] : !$answer['answer'];
    $user_answer = $answer['answer'];
    if ($showpoints) {
      $data[0]['correct_answer'] = $correct_answer ? t('True') : t('False');
    }
    $data[0]['user_answer'] = $user_answer === NULL ? '' : ($user_answer ? t('True') : t('False'));
    if ($showfeedback && !empty($this->question->feedback)) {
      $data[0]['feedback'] = check_markup($this->question->feedback, $this
        ->getFormat());
    }
    // Return themed output
    return array(
      '#markup' => theme('truefalse_response', array(
        'metadata' => $metadata,
        'data' => $data,
      )),
    );
  }
}Members
| Name   | Modifiers | Type | Description | Overrides | 
|---|---|---|---|---|
| QuizQuestionResponse:: | protected | property | ||
| QuizQuestionResponse:: | protected | property | ||
| QuizQuestionResponse:: | protected | property | ||
| QuizQuestionResponse:: | public | property | ||
| QuizQuestionResponse:: | public | property | ||
| QuizQuestionResponse:: | public | property | ||
| QuizQuestionResponse:: | protected | property | ||
| QuizQuestionResponse:: | protected | property | 8 | |
| QuizQuestionResponse:: | protected | function | Utility function that returns the format of the node body | |
| QuizQuestionResponse:: | public | function | Returns stored max score if it exists, if not the max score is calculated and returned. | |
| QuizQuestionResponse:: | public | function | Get data suitable for reporting a user's score on the question. This expects an object with the following attributes: | |
| QuizQuestionResponse:: | public | function | Creates the report form for the admin pages, and for when a user gets feedback after answering questions. | 1 | 
| QuizQuestionResponse:: | public | function | 2 | |
| QuizQuestionResponse:: | public | function | get the question part of the reportForm | |
| QuizQuestionResponse:: | public | function | Get the score part of the report form | 3 | 
| QuizQuestionResponse:: | public | function | Get the submit function for the reportForm | 2 | 
| QuizQuestionResponse:: | public | function | Get the theme key for the reportForm | |
| QuizQuestionResponse:: | public | function | Get the validate function for the reportForm | 2 | 
| QuizQuestionResponse:: | function | Returns stored score if it exists, if not the score is calculated and returned. | ||
| QuizQuestionResponse:: | function | Check to see if the answer is marked as correct. | ||
| QuizQuestionResponse:: | public | function | Indicate whether the response has been evaluated (scored) yet. Questions that require human scoring (e.g. essays) may need to manually toggle this. | |
| QuizQuestionResponse:: | public | function | Used to refresh this instances question node in case drupal has changed it. | |
| QuizQuestionResponse:: | public | function | Saves the quiz result. This is not used when a question is skipped! | |
| QuizQuestionResponse:: | function | Represent the response as a stdClass object. | ||
| TrueFalseResponse:: | public | function | Implementation of delete Overrides QuizQuestionResponse:: | |
| TrueFalseResponse:: | public | function | Implementation of getCorrectAnswer | |
| TrueFalseResponse:: | public | function | Implementation of getReportFormResponse Overrides QuizQuestionResponse:: | |
| TrueFalseResponse:: | public | function | Implementation of getResponse Overrides QuizQuestionResponse:: | |
| TrueFalseResponse:: | public | function | Implementation of isValid Overrides QuizQuestionResponse:: | |
| TrueFalseResponse:: | public | function | Implementation of save Overrides QuizQuestionResponse:: | |
| TrueFalseResponse:: | public | function | Implementation of score Overrides QuizQuestionResponse:: | |
| TrueFalseResponse:: | public | function | Constructor Overrides QuizQuestionResponse:: | 
