class ClozeResponse in Quiz 8.4
Extension of QuizQuestionResponse
Hierarchy
- class \Drupal\quiz_question\QuizQuestionResponse
- class \Drupal\cloze\ClozeResponse
Expanded class hierarchy of ClozeResponse
File
- question_types/
cloze/ lib/ Drupal/ cloze/ ClozeResponse.php, line 14
Namespace
Drupal\clozeView source
class ClozeResponse extends QuizQuestionResponse {
/**
* ID of the answer.
*/
protected $answer_id = 0;
/**
* Constructor
*/
public function __construct($result_id, stdClass $question_node, $answer = NULL) {
parent::__construct($result_id, $question_node, $answer);
if (!isset($answer)) {
$r = db_query("SELECT answer_id, answer, score, question_vid, question_nid, result_id FROM {quiz_cloze_user_answers} WHERE question_nid = :question_nid AND question_vid = :question_vid AND result_id = :result_id", array(
':question_nid' => $question_node
->id(),
':question_vid' => $question_node
->getRevisionId(),
':result_id' => $result_id,
))
->fetch();
if (!empty($r)) {
$this->answer = unserialize($r->answer);
$this->score = $r->score;
$this->answer_id = $r->answer_id;
}
}
else {
$this->answer = $answer;
}
}
/**
* Implementation of isValid
*
* @see QuizQuestionResponse#isValid()
*/
public function isValid() {
return TRUE;
}
/**
* Implementation of save
*
* @see QuizQuestionResponse#save()
*/
public function save() {
$this->answer_id = db_insert('quiz_cloze_user_answers')
->fields(array(
'answer' => serialize($this->answer),
'question_nid' => $this->question
->id(),
'question_vid' => $this->question
->getRevisionId(),
'result_id' => $this->rid,
'score' => $this
->getScore(FALSE),
))
->execute();
}
/**
* Implementation of delete()
*
* @see QuizQuestionResponse#delete()
*/
public function delete() {
db_delete('quiz_cloze_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() {
$shortAnswer = new ClozeQuestion($this->question);
$score = $shortAnswer
->evaluateAnswer($this->answer);
return $score;
}
/**
* Implementation of getResponse()
*
* @see QuizQuestionResponse#getResponse()
*/
public function getResponse() {
return $this->answer;
}
/**
* Implementation of getReportForm()
*
* @see QuizQuestionResponse#getReportForm($showpoints, $showfeedback, $allow_scoring)
*/
public function getReportForm($showpoints = TRUE, $showfeedback = TRUE, $allow_scoring = FALSE) {
$form = parent::getReportForm($showpoints, $showfeedback, $allow_scoring);
$question = strip_tags($form['question']['#markup']);
$question_form['open_wrapper'] = array(
'#markup' => '<div class="cloze-question">',
);
foreach (_cloze_get_question_chunks($question) as $position => $chunk) {
if (strpos($chunk, '[') === FALSE) {
// this "tries[foobar]" hack is needed becaues response handler engine checks for input field
// with name tries
$question_form['tries[' . $position . ']'] = array(
'#markup' => str_replace("\n", "<br/>", $chunk),
'#prefix' => '<div class="form-item">',
'#suffix' => '</div>',
);
}
else {
$chunk = str_replace(array(
'[',
']',
), '', $chunk);
$choices = explode(',', $chunk);
if (count($choices) > 1) {
$question_form['tries[' . $position . ']'] = array(
'#type' => 'select',
'#title' => '',
'#options' => _cloze_shuffle_choices(drupal_map_assoc($choices)),
'#required' => FALSE,
);
}
else {
$question_form['tries[' . $position . ']'] = array(
'#type' => 'textfield',
'#title' => '',
'#size' => 32,
'#required' => FALSE,
'#attributes' => array(
'autocomplete' => 'off',
),
);
}
}
}
$question_form['close_wrapper'] = array(
'#markup' => '</div>',
);
$form['question']['#markup'] = drupal_render($question_form);
return $form;
}
/**
* Implementation of getReportFormResponse()
*
* @see QuizQuestionResponse#getReportFormResponse($showpoints, $showfeedback, $allow_scoring)
*/
public function getReportFormResponse($showpoints = TRUE, $showfeedback = TRUE, $allow_scoring = FALSE) {
$form = array();
$form['#theme'] = 'cloze_response_form';
$form['#attached']['css'] = array(
drupal_get_path('module', 'cloze') . '/css/cloze.css',
);
if ($this->question && !empty($this->question->answers)) {
$answer = (object) current($this->question->answers);
}
else {
return $form;
}
$body = $this->question->body
->getValue();
$this->question = node_load($this->question
->id());
$question = $body[0]['value'];
$correct_answer = _cloze_get_correct_answer($question);
$user_answer = _cloze_get_user_answer($question, $this->answer);
$form['answer'] = array(
'#markup' => theme('cloze_user_answer', array(
'answer' => $user_answer,
'correct' => $correct_answer,
)),
);
return $form;
}
/**
* Implementation of getReportFormScore()
*
* @see QuizQuestionResponse#getReportFormScore($showpoints, $showfeedback, $allow_scoring)
*/
public function getReportFormScore($showfeedback = TRUE, $showpoints = TRUE, $allow_scoring = FALSE) {
return array(
'#markup' => $this
->getScore(),
);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ClozeResponse:: |
protected | property | ID of the answer. | |
ClozeResponse:: |
public | function |
Implementation of delete() Overrides QuizQuestionResponse:: |
|
ClozeResponse:: |
public | function |
Implementation of getReportForm() Overrides QuizQuestionResponse:: |
|
ClozeResponse:: |
public | function |
Implementation of getReportFormResponse() Overrides QuizQuestionResponse:: |
|
ClozeResponse:: |
public | function |
Implementation of getReportFormScore() Overrides QuizQuestionResponse:: |
|
ClozeResponse:: |
public | function |
Implementation of getResponse() Overrides QuizQuestionResponse:: |
|
ClozeResponse:: |
public | function |
Implementation of isValid Overrides QuizQuestionResponse:: |
|
ClozeResponse:: |
public | function |
Implementation of save Overrides QuizQuestionResponse:: |
|
ClozeResponse:: |
public | function |
Implementation of score() Overrides QuizQuestionResponse:: |
|
ClozeResponse:: |
public | function |
Constructor Overrides QuizQuestionResponse:: |
|
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 | 2 | |
QuizQuestionResponse:: |
public | function | get the question part of the reportForm | |
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. |