ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
ilFeedItem Class Reference

This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Learning e.V. More...

+ Collaboration diagram for ilFeedItem:

Public Member Functions

 setAbout (string $a_About)
 
 getAbout ()
 
 setTitle (string $a_Title)
 
 getTitle ()
 
 setLink (string $a_Link)
 
 getLink ()
 
 setDescription (string $a_Description)
 
 getDescription ()
 
 setEnclosureUrl (string $a_enclosureurl)
 
 getEnclosureUrl ()
 
 setEnclosureType (string $a_enclosuretype)
 
 getEnclosureType ()
 
 setEnclosureLength (int $a_enclosurelength)
 
 getEnclosureLength ()
 
 setDate (string $a_date)
 
 getDate ()
 

Private Attributes

string $about = ""
 
string $title = ""
 
string $link = ""
 
string $description = ""
 
string $enclosureurl = ""
 
string $enclosuretype = ""
 
int $enclosurelength = 0
 
string $date = ""
 

Detailed Description

This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Learning e.V.

ILIAS is licensed with the GPL-3.0, see https://www.gnu.org/licenses/gpl-3.0.en.html You should have received a copy of said license along with the source code, too.

If this is not the case or you just want to try ILIAS, you'll find us at: https://www.ilias.de https://github.com/ILIAS-eLearning A FeedItem represents an item in a News Feed.

Author
Alexander Killing killi.nosp@m.ng@l.nosp@m.eifos.nosp@m..de

Definition at line 23 of file class.ilFeedItem.php.

Member Function Documentation

◆ getAbout()

ilFeedItem::getAbout ( )

Definition at line 39 of file class.ilFeedItem.php.

References $about.

39  : string
40  {
41  return $this->about;
42  }

◆ getDate()

ilFeedItem::getDate ( )

Definition at line 112 of file class.ilFeedItem.php.

References $date.

112  : string
113  {
114  return $this->date;
115  }

◆ getDescription()

ilFeedItem::getDescription ( )

Definition at line 69 of file class.ilFeedItem.php.

References $description.

69  : string
70  {
71  return $this->description;
72  }
string $description

◆ getEnclosureLength()

ilFeedItem::getEnclosureLength ( )

Definition at line 99 of file class.ilFeedItem.php.

References $enclosurelength.

99  : int
100  {
101  return $this->enclosurelength;
102  }

◆ getEnclosureType()

ilFeedItem::getEnclosureType ( )

Definition at line 89 of file class.ilFeedItem.php.

References $enclosuretype.

89  : string
90  {
91  return $this->enclosuretype;
92  }
string $enclosuretype

◆ getEnclosureUrl()

ilFeedItem::getEnclosureUrl ( )

Definition at line 79 of file class.ilFeedItem.php.

References $enclosureurl.

79  : string
80  {
81  return $this->enclosureurl;
82  }
string $enclosureurl

◆ getLink()

ilFeedItem::getLink ( )

Definition at line 59 of file class.ilFeedItem.php.

References $link.

59  : string
60  {
61  return $this->link;
62  }

◆ getTitle()

ilFeedItem::getTitle ( )

Definition at line 49 of file class.ilFeedItem.php.

References $title.

49  : string
50  {
51  return $this->title;
52  }

◆ setAbout()

ilFeedItem::setAbout ( string  $a_About)

Definition at line 34 of file class.ilFeedItem.php.

34  : void
35  {
36  $this->about = $a_About;
37  }

◆ setDate()

ilFeedItem::setDate ( string  $a_date)
Parameters
string$a_dateDate (yyyy-mm-dd hh:mm:ss)

Definition at line 107 of file class.ilFeedItem.php.

107  : void
108  {
109  $this->date = $a_date;
110  }

◆ setDescription()

ilFeedItem::setDescription ( string  $a_Description)

Definition at line 64 of file class.ilFeedItem.php.

64  : void
65  {
66  $this->description = $a_Description;
67  }

◆ setEnclosureLength()

ilFeedItem::setEnclosureLength ( int  $a_enclosurelength)

Definition at line 94 of file class.ilFeedItem.php.

94  : void
95  {
96  $this->enclosurelength = $a_enclosurelength;
97  }

◆ setEnclosureType()

ilFeedItem::setEnclosureType ( string  $a_enclosuretype)

Definition at line 84 of file class.ilFeedItem.php.

84  : void
85  {
86  $this->enclosuretype = $a_enclosuretype;
87  }

◆ setEnclosureUrl()

ilFeedItem::setEnclosureUrl ( string  $a_enclosureurl)

Definition at line 74 of file class.ilFeedItem.php.

74  : void
75  {
76  $this->enclosureurl = $a_enclosureurl;
77  }

◆ setLink()

ilFeedItem::setLink ( string  $a_Link)

Definition at line 54 of file class.ilFeedItem.php.

54  : void
55  {
56  $this->link = $a_Link;
57  }

◆ setTitle()

ilFeedItem::setTitle ( string  $a_Title)

Definition at line 44 of file class.ilFeedItem.php.

44  : void
45  {
46  $this->title = $a_Title;
47  }

Field Documentation

◆ $about

string ilFeedItem::$about = ""
private

Definition at line 25 of file class.ilFeedItem.php.

Referenced by getAbout().

◆ $date

string ilFeedItem::$date = ""
private

Definition at line 32 of file class.ilFeedItem.php.

Referenced by getDate().

◆ $description

string ilFeedItem::$description = ""
private

Definition at line 28 of file class.ilFeedItem.php.

Referenced by getDescription().

◆ $enclosurelength

int ilFeedItem::$enclosurelength = 0
private

Definition at line 31 of file class.ilFeedItem.php.

Referenced by getEnclosureLength().

◆ $enclosuretype

string ilFeedItem::$enclosuretype = ""
private

Definition at line 30 of file class.ilFeedItem.php.

Referenced by getEnclosureType().

◆ $enclosureurl

string ilFeedItem::$enclosureurl = ""
private

Definition at line 29 of file class.ilFeedItem.php.

Referenced by getEnclosureUrl().

◆ $link

string ilFeedItem::$link = ""
private

Definition at line 27 of file class.ilFeedItem.php.

Referenced by getLink().

◆ $title

string ilFeedItem::$title = ""
private

Definition at line 26 of file class.ilFeedItem.php.

Referenced by getTitle().


The documentation for this class was generated from the following file: