class LongAnswerQuestion in OG Quiz 7
Extension of QuizQuestion.
Hierarchy
- class \QuizQuestion
- class \LongAnswerQuestion
Expanded class hierarchy of LongAnswerQuestion
File
- includes/
og_long_answer.php, line 14 - Long answer classes.
View source
class LongAnswerQuestion extends QuizQuestion {
/**
* Implementation of saveNodeProperties
* @see QuizQuestion#saveNodeProperties($is_new)
*/
public function saveNodeProperties($is_new = FALSE) {
if (!isset($this->node->feedback)) {
$this->node->feedback = '';
}
if ($is_new || $this->node->revision == 1) {
$id = db_insert('quiz_long_answer_node_properties')
->fields(array(
'nid' => $this->node->nid,
'vid' => $this->node->vid,
'rubric' => $this->node->rubric,
))
->execute();
}
else {
db_update('quiz_long_answer_node_properties')
->fields(array(
'rubric' => $this->node->rubric,
))
->condition('nid', $this->node->nid)
->condition('vid', $this->node->vid)
->execute();
}
}
/**
* Implementation of validateNode
*
* @see QuizQuestion#validateNode($form)
*/
public function validateNode(array &$form) {
}
/**
* Implementation of delete
*
* @see QuizQuestion#delete($only_this_version)
*/
public function delete($only_this_version = FALSE) {
if ($only_this_version) {
db_delete('quiz_long_answer_user_answers')
->condition('question_nid', $this->node->nid)
->condition('question_vid', $this->node->vid)
->execute();
db_delete('quiz_long_answer_node_properties')
->condition('nid', $this->node->nid)
->condition('vid', $this->node->vid)
->execute();
}
else {
db_delete('quiz_long_answer_node_properties')
->condition('nid', $this->node->nid)
->execute();
db_delete('quiz_long_answer_user_answers')
->condition('question_nid', $this->node->nid)
->execute();
}
parent::delete($only_this_version);
}
/**
* Implementation of getNodeProperties
*
* @see QuizQuestion#getNodeProperties()
*/
public function getNodeProperties() {
if (isset($this->nodeProperties)) {
return $this->nodeProperties;
}
$props = parent::getNodeProperties();
$res_a = db_query('SELECT rubric FROM {quiz_long_answer_node_properties}
WHERE nid = :nid AND vid = :vid', array(
':nid' => $this->node->nid,
':vid' => $this->node->vid,
))
->fetchAssoc();
if (is_array($res_a)) {
$props = array_merge($props, $res_a);
}
$this->nodeProperties = $props;
return $props;
}
/**
* Implementation of getNodeView
*
* @see QuizQuestion#getNodeView()
*/
public function getNodeView() {
$content = parent::getNodeView();
if ($this
->viewCanRevealCorrect()) {
$content['answers'] = array(
'#type' => 'item',
'#title' => t('Rubric'),
'#markup' => '<div class="quiz-solution">' . check_markup($this->node->rubric, $this
->getFormat()) . '</div>',
'#weight' => 1,
);
}
else {
$content['answers'] = array(
'#markup' => '<div class="quiz-answer-hidden">Answer hidden</div>',
'#weight' => 1,
);
}
return $content;
}
/**
* Implementation of getAnweringForm
*
* @see QuizQuestion#getAnsweringForm($form_state, $rid)
*/
public function getAnsweringForm(array $form_state = NULL, $rid) {
$form = parent::getAnsweringForm($form_state, $rid);
$form['#theme'] = 'long_answer_answering_form';
$form['tries'] = array(
'#type' => 'textarea',
'#title' => t('Answer'),
'#description' => t('Enter your answer here. If you need more space, click on the grey bar at the bottom of this area and drag it down.'),
'#rows' => 15,
'#cols' => 60,
'#required' => FALSE,
);
if (isset($rid)) {
$response = new LongAnswerResponse($rid, $this->node);
$form['tries']['#default_value'] = $response
->getResponse();
}
return $form;
}
/**
* Implementation of getCreationForm
*
* @see QuizQuestion#getCreationForm($form_state)
*/
public function getCreationForm(array &$form_state = NULL) {
$form['rubric'] = array(
'#type' => 'textarea',
'#title' => t('Rubric'),
'#description' => t('Specify the criteria for grading the response.'),
'#default_value' => isset($this->node->rubric) ? $this->node->rubric : '',
'#size' => 60,
'#maxlength' => 512,
'#required' => FALSE,
);
return $form;
}
/**
* Implementation of getMaximumScore
*
* @see QuizQuestion#getMaximumScore()
*/
public function getMaximumScore() {
return variable_get('long_answer_default_max_score', 10);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
LongAnswerQuestion:: |
public | function |
Implementation of delete Overrides QuizQuestion:: |
|
LongAnswerQuestion:: |
public | function |
Implementation of getAnweringForm Overrides QuizQuestion:: |
|
LongAnswerQuestion:: |
public | function |
Implementation of getCreationForm Overrides QuizQuestion:: |
|
LongAnswerQuestion:: |
public | function |
Implementation of getMaximumScore Overrides QuizQuestion:: |
|
LongAnswerQuestion:: |
public | function |
Implementation of getNodeProperties Overrides QuizQuestion:: |
|
LongAnswerQuestion:: |
public | function |
Implementation of getNodeView Overrides QuizQuestion:: |
|
LongAnswerQuestion:: |
public | function |
Implementation of saveNodeProperties Overrides QuizQuestion:: |
|
LongAnswerQuestion:: |
public | function |
Implementation of validateNode Overrides QuizQuestion:: |
|
QuizQuestion:: |
public | property | The current node for this question. | |
QuizQuestion:: |
public | property | ||
QuizQuestion:: |
protected | function | This may be overridden in subclasses. If it returns true, it means the max_score is updated for all occurrences of this question in quizzes. | |
QuizQuestion:: |
public | function | Check user permissions based on the context (inside a group or global). | |
QuizQuestion:: |
public | function | Allow question types to override the body field title | |
QuizQuestion:: |
protected | function | Utility function that returns the format of the node body | |
QuizQuestion:: |
public | function | Returns a node form to quiz_question_form | |
QuizQuestion:: |
public | function | Fetch the parent quiz. | |
QuizQuestion:: |
public | function | Finds out if a question has been answered or not | |
QuizQuestion:: |
public | function | Responsible for handling insert/update of question-specific data. This is typically called from within the Node API, so there is no need to save the node. | |
QuizQuestion:: |
function | Handle the add to quiz part of the quiz_question_form | ||
QuizQuestion:: |
public | function | Determines if the user can view the correct answers | |
QuizQuestion:: |
public | function | QuizQuestion constructor stores the node object. |