You are here

public function ClozeQuestion::getNodeProperties in Cloze 6

Same name and namespace in other branches
  1. 7 cloze.classes.inc \ClozeQuestion::getNodeProperties()

Implementation of getNodeProperties

See also

QuizQuestion#getNodeProperties()

File

./cloze.classes.inc, line 64
The main classes for the short answer question type.

Class

ClozeQuestion
Extension of QuizQuestion.

Code

public function getNodeProperties() {
  if (isset($this->nodeProperties)) {
    return $this->nodeProperties;
  }
  $props = parent::getNodeProperties();
  $this->nodeProperties = $props;
  return $props;
}