ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
class.ilFeedItem.php
Go to the documentation of this file.
1<?php
2
24{
25 private string $about = "";
26 private string $title = "";
27 private string $link = "";
28 private string $description = "";
29 private string $enclosureurl = "";
30 private string $enclosuretype = "";
31 private int $enclosurelength = 0;
32 private string $date = "";
33
34 public function setAbout(string $a_About): void
35 {
36 $this->about = $a_About;
37 }
38
39 public function getAbout(): string
40 {
41 return $this->about;
42 }
43
44 public function setTitle(string $a_Title): void
45 {
46 $this->title = $a_Title;
47 }
48
49 public function getTitle(): string
50 {
51 return $this->title;
52 }
53
54 public function setLink(string $a_Link): void
55 {
56 $this->link = $a_Link;
57 }
58
59 public function getLink(): string
60 {
61 return $this->link;
62 }
63
64 public function setDescription(string $a_Description): void
65 {
66 $this->description = $a_Description;
67 }
68
69 public function getDescription(): string
70 {
71 return $this->description;
72 }
73
74 public function setEnclosureUrl(string $a_enclosureurl): void
75 {
76 $this->enclosureurl = $a_enclosureurl;
77 }
78
79 public function getEnclosureUrl(): string
80 {
82 }
83
84 public function setEnclosureType(string $a_enclosuretype): void
85 {
86 $this->enclosuretype = $a_enclosuretype;
87 }
88
89 public function getEnclosureType(): string
90 {
92 }
93
94 public function setEnclosureLength(int $a_enclosurelength): void
95 {
96 $this->enclosurelength = $a_enclosurelength;
97 }
98
99 public function getEnclosureLength(): int
100 {
102 }
103
107 public function setDate(string $a_date): void
108 {
109 $this->date = $a_date;
110 }
111
112 public function getDate(): string
113 {
114 return $this->date;
115 }
116}
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
string $enclosuretype
setEnclosureType(string $a_enclosuretype)
setEnclosureUrl(string $a_enclosureurl)
setDescription(string $a_Description)
setLink(string $a_Link)
string $description
setEnclosureLength(int $a_enclosurelength)
string $enclosureurl
setDate(string $a_date)
setAbout(string $a_About)
setTitle(string $a_Title)
link(string $caption, string $href, bool $new_viewport=false)