diff options
author | tcitworld <thomas.citharet@gmail.com> | 2014-01-04 12:30:31 -0800 |
---|---|---|
committer | tcitworld <thomas.citharet@gmail.com> | 2014-01-04 12:30:31 -0800 |
commit | 7f667839764621b5aa01c9db8ce5dde2a29ef18f (patch) | |
tree | 93d8241ee81c87e18494325ae02f0589a8e328a2 /inc/3rdparty/feedwriter/DummySingleItemFeed.php | |
parent | a84f77d6ba15a64ff00453f5d5190c021ce460ed (diff) | |
parent | 2abcccb37180c17318f5226f5d4bc28f30b621ea (diff) | |
download | wallabag-7f667839764621b5aa01c9db8ce5dde2a29ef18f.tar.gz wallabag-7f667839764621b5aa01c9db8ce5dde2a29ef18f.tar.zst wallabag-7f667839764621b5aa01c9db8ce5dde2a29ef18f.zip |
Merge pull request #1 from inthepoche/dev
Dev
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 | ||