You are here

public function LongAnswerQuestion::getNodeProperties in Quiz 7.6

Same name and namespace in other branches
  1. 6.4 question_types/long_answer/long_answer.classes.inc \LongAnswerQuestion::getNodeProperties()
  2. 7 question_types/long_answer/long_answer.classes.inc \LongAnswerQuestion::getNodeProperties()
  3. 7.4 question_types/long_answer/long_answer.classes.inc \LongAnswerQuestion::getNodeProperties()
  4. 7.5 question_types/long_answer/long_answer.classes.inc \LongAnswerQuestion::getNodeProperties()

Implementation of getNodeProperties

Overrides QuizQuestion::getNodeProperties

See also

QuizQuestion#getNodeProperties()

File

question_types/long_answer/long_answer.classes.inc, line 82
Long answer classes.

Class

LongAnswerQuestion
Extension of QuizQuestion.

Code

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;
}