summaryrefslogtreecommitdiffstats
path: root/lib/feed.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/feed.php')
-rw-r--r--lib/feed.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/feed.php b/lib/feed.php
index bbed8d598..59db6f7cc 100644
--- a/lib/feed.php
+++ b/lib/feed.php
@@ -18,6 +18,7 @@ class OC_News_Feed extends OC_News_Collection {
private $url;
private $spfeed; //encapsulate a SimplePie_Core object
private $items; //array that contains all the items of the feed
+ private $favicon;
public function __construct($url, $title, $items, $id = null){
$this->url = $url;
@@ -36,6 +37,14 @@ class OC_News_Feed extends OC_News_Collection {
return $this->title;
}
+ public function getFavicon(){
+ return $this->favicon;
+ }
+
+ public function setFavicon($favicon){
+ $this->favicon = $favicon;
+ }
+
public function setItems($items){
$this->items = $items;
}
@@ -43,4 +52,5 @@ class OC_News_Feed extends OC_News_Collection {
public function getItems(){
return $this->items;
}
+
}