ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
class.ilQTIDisplayfeedback.php
Go to the documentation of this file.
1<?php
2
19declare(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 {
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}
setFeedbacktype(string $a_feedbacktype)
setLinkrefid(string $a_linkrefid)