diff options
author | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2013-12-23 02:28:56 -0800 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2013-12-23 02:28:56 -0800 |
commit | 60fc4f4b1ab37fbfe9021f3fa1395d66a4424ed2 (patch) | |
tree | 515c4b9c8286ae363f77722c91acb878151dc386 /inc/3rdparty/feedwriter/DummySingleItemFeed.php | |
parent | cbfd5a1019f47fadefd8490dae9f039ae894298d (diff) | |
parent | da5fc42f615eeb45a702604970f94967507fb432 (diff) | |
download | wallabag-60fc4f4b1ab37fbfe9021f3fa1395d66a4424ed2.tar.gz wallabag-60fc4f4b1ab37fbfe9021f3fa1395d66a4424ed2.tar.zst wallabag-60fc4f4b1ab37fbfe9021f3fa1395d66a4424ed2.zip |
Merge pull request #363 from inthepoche/dev1.3.0
poche 1.3.0
Diffstat (limited to 'inc/3rdparty/feedwriter/DummySingleItemFeed.php')
-rw-r--r-- | inc/3rdparty/feedwriter/DummySingleItemFeed.php | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/inc/3rdparty/feedwriter/DummySingleItemFeed.php b/inc/3rdparty/feedwriter/DummySingleItemFeed.php deleted file mode 100644 index 5f2f871e..00000000 --- a/inc/3rdparty/feedwriter/DummySingleItemFeed.php +++ /dev/null | |||
@@ -1,24 +0,0 @@ | |||
1 | <?php | ||
2 | // create single item dummy feed object | ||
3 | class DummySingleItemFeed { | ||
4 | public $item; | ||
5 | function __construct($url) { $this->item = new DummySingleItem($url); } | ||
6 | public function get_title() { return ''; } | ||
7 | public function get_description() { return 'Content extracted from '.$this->item->url; } | ||
8 | public function get_link() { return $this->item->url; } | ||
9 | public function get_language() { return false; } | ||
10 | public function get_image_url() { return false; } | ||
11 | public function get_items($start=0, $max=1) { return array(0=>$this->item); } | ||
12 | } | ||
13 | class DummySingleItem { | ||
14 | public $url; | ||
15 | function __construct($url) { $this->url = $url; } | ||
16 | public function get_permalink() { return $this->url; } | ||
17 | public function get_title() { return ''; } | ||
18 | public function get_date($format='') { return false; } | ||
19 | public function get_author($key=0) { return null; } | ||
20 | public function get_authors() { return null; } | ||
21 | public function get_description() { return ''; } | ||
22 | public function get_enclosure($key=0, $prefer=null) { return null; } | ||
23 | public function get_enclosures() { return null; } | ||
24 | } \ No newline at end of file | ||