ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
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  {
81  return $this->enclosureurl;
82  }
83 
84  public function setEnclosureType(string $a_enclosuretype): void
85  {
86  $this->enclosuretype = $a_enclosuretype;
87  }
88 
89  public function getEnclosureType(): string
90  {
91  return $this->enclosuretype;
92  }
93 
94  public function setEnclosureLength(int $a_enclosurelength): void
95  {
96  $this->enclosurelength = $a_enclosurelength;
97  }
98 
99  public function getEnclosureLength(): int
100  {
101  return $this->enclosurelength;
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 }
string $enclosuretype
setLink(string $a_Link)
string $enclosureurl
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setEnclosureUrl(string $a_enclosureurl)
setTitle(string $a_Title)
setDate(string $a_date)
setAbout(string $a_About)
setDescription(string $a_Description)
string $description
setEnclosureLength(int $a_enclosurelength)
setEnclosureType(string $a_enclosuretype)