ILIAS  trunk Revision v11.0_alpha-1713-gd8962da2f67
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilQTIDisplayfeedback.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
30 {
31  public ?string $feedbacktype = null;
32  public string $linkrefid = '';
33  public ?string $content = null;
34 
35  public function setFeedbacktype(string $a_feedbacktype): void
36  {
37  $this->feedbacktype = $a_feedbacktype;
38  }
39 
40  public function getFeedbacktype(): ?string
41  {
42  return $this->feedbacktype;
43  }
44 
45  public function setLinkrefid(string $a_linkrefid): void
46  {
47  $this->linkrefid = $a_linkrefid;
48  }
49 
50  public function getLinkrefid(): string
51  {
52  return $this->linkrefid;
53  }
54 
55  public function setContent(string $a_content): void
56  {
57  $this->content = $a_content;
58  }
59 
60  public function getContent(): ?string
61  {
62  return $this->content;
63  }
64 }
setLinkrefid(string $a_linkrefid)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setFeedbacktype(string $a_feedbacktype)