Ejemplo n.º 1
0
 function sync($fieldFilters = null)
 {
     if ($this->QuestionList === false) {
         $this->fetchQuestionList();
     }
     eZPersistentObject::sync($fieldFilters);
     foreach (array_keys($this->QuestionList) as $key) {
         $question =& $this->QuestionList[$key];
         $question->sync();
     }
 }