From c113b01f013a07ac264ec9e37d22239e87216b81 Mon Sep 17 00:00:00 2001 From: logmanoriginal Date: Thu, 4 Aug 2016 12:37:29 +0200 Subject: [PATCH] [Scilogs] remove bridge: website supported by WordPress bridge --- bridges/ScilogsBridge.php | 54 --------------------------------------- 1 file changed, 54 deletions(-) delete mode 100644 bridges/ScilogsBridge.php diff --git a/bridges/ScilogsBridge.php b/bridges/ScilogsBridge.php deleted file mode 100644 index ee634b39..00000000 --- a/bridges/ScilogsBridge.php +++ /dev/null @@ -1,54 +0,0 @@ -maintainer = "qwertygc"; - $this->name = "Scilogs Bridge"; - $this->uri = "http://www.scilogs.fr/"; - $this->description = "Returns the newest articles."; - $this->update = "2014-05-25"; - - } - - public function collectData(array $param){ - - function ScilogsStripCDATA($string) { - $string = str_replace('', '', $string); - return $string; - } - function ScilogsExtractContent($url) { - $html2 = $this->file_get_html($url); - $text = $html2->find('div.entrybody', 0)->innertext; - return $text; - } - $html = $this->file_get_html('http://www.scilogs.fr/?wpmu-feed=posts') or $this->returnError('Could not request Scilogs.', 404); - $limit = 0; - - foreach($html->find('item') as $element) { - if($limit < 10) { - $item = new \Item(); - $item->title = ScilogsStripCDATA($element->find('title', 0)->innertext); - $item->uri = ScilogsStripCDATA($element->find('guid', 0)->plaintext); - $item->timestamp = strtotime($element->find('pubDate', 0)->plaintext); - $item->content = ScilogsExtractContent($item->uri); - $this->items[] = $item; - $limit++; - } - } - - } - - public function getName(){ - return 'Scilogs Bridge'; - } - - public function getURI(){ - return 'http://scilogs.fr/'; - } - - public function getCacheDuration(){ - return 3600*2; // 2 hours - } -}