ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilQTIOutcomes.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
30 {
31  public ?string $comment = null;
33  public array $decvar = [];
34 
35  public function setComment(string $a_comment): void
36  {
37  $this->comment = $a_comment;
38  }
39 
40  public function getComment(): ?string
41  {
42  return $this->comment;
43  }
44 
45  public function addDecvar(ilQTIDecvar $a_decvar): void
46  {
47  $this->decvar[] = $a_decvar;
48  }
49 }
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setComment(string $a_comment)
comment()
description: > Example for rendring a comment glyph.
Definition: comment.php:41
addDecvar(ilQTIDecvar $a_decvar)