From dc8b8301d387d48e38624423cba9cf5323f26291 Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Wed, 22 Oct 2014 11:06:43 +0200 Subject: fix #302 --- fetcher/ifeedfetcher.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'fetcher/ifeedfetcher.php') diff --git a/fetcher/ifeedfetcher.php b/fetcher/ifeedfetcher.php index 68b1bcf64..388b491bf 100644 --- a/fetcher/ifeedfetcher.php +++ b/fetcher/ifeedfetcher.php @@ -19,11 +19,17 @@ interface IFeedFetcher { * @param string $url remote url of the feed * @param boolean $getFavicon if the favicon should also be fetched, * defaults to true + * @param string $lastModified a last modified value from an http header + * defaults to false. If lastModified matches the http header from the feed + * no results are fetched + * @param string $etag an etag from an http header. + * If lastModified matches the http header from the feed + * no results are fetched * @throws FetcherException if the fetcher encounters a problem * @return array an array containing the new feed and its items, first * element being the Feed and second element being an array of Items */ - function fetch($url, $getFavicon=true); + function fetch($url, $getFavicon=true, $lastModified=null, $etag=null); /** * @param string $url the url that should be fetched -- cgit v1.2.3