public function LongAnswerQuestion::saveNodeProperties in OG Quiz 7
Implementation of saveNodeProperties
Overrides QuizQuestion::saveNodeProperties
See also
QuizQuestion#saveNodeProperties($is_new)
File
- includes/
og_long_answer.php, line 19 - Long answer classes.
Class
- LongAnswerQuestion
- Extension of QuizQuestion.
Code
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();
}
}