ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilQTIResprocessing.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
30 {
31  public ?string $comment = null;
34  public array $respcondition = [];
35  public ?string $scoremodel = null;
36 
37  public function setComment(string $a_comment): void
38  {
39  $this->comment = $a_comment;
40  }
41 
42  public function getComment(): ?string
43  {
44  return $this->comment;
45  }
46 
47  public function setOutcomes(ilQTIOutcomes $a_outcomes): void
48  {
49  $this->outcomes = $a_outcomes;
50  }
51 
52  public function getOutcomes(): ?ilQTIOutcomes
53  {
54  return $this->outcomes;
55  }
56 
57  public function addRespcondition(ilQTIRespcondition $a_respcondition): void
58  {
59  $this->respcondition[] = $a_respcondition;
60  }
61 
62  public function setScoremodel(string $a_scoremodel): void
63  {
64  $this->scoremodel = $a_scoremodel;
65  }
66 
67  public function getScoremodel(): ?string
68  {
69  return $this->scoremodel;
70  }
71 }
setComment(string $a_comment)
setScoremodel(string $a_scoremodel)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
addRespcondition(ilQTIRespcondition $a_respcondition)
comment()
description: > Example for rendring a comment glyph.
Definition: comment.php:41
setOutcomes(ilQTIOutcomes $a_outcomes)