ILIAS  release_8 Revision v8.23
class.ilQTIDisplayfeedback.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
31 {
32  public ?string $feedbacktype = null;
33  public string $linkrefid = '';
34  public ?string $content = null;
35 
36  public function setFeedbacktype(string $a_feedbacktype): void
37  {
38  $this->feedbacktype = $a_feedbacktype;
39  }
40 
41  public function getFeedbacktype(): ?string
42  {
43  return $this->feedbacktype;
44  }
45 
46  public function setLinkrefid(string $a_linkrefid): void
47  {
48  $this->linkrefid = $a_linkrefid;
49  }
50 
51  public function getLinkrefid(): string
52  {
53  return $this->linkrefid;
54  }
55 
56  public function setContent(string $a_content): void
57  {
58  $this->content = $a_content;
59  }
60 
61  public function getContent(): ?string
62  {
63  return $this->content;
64  }
65 }
setLinkrefid(string $a_linkrefid)
setFeedbacktype(string $a_feedbacktype)