diff --git a/bridges/FierPandaBridge.php b/bridges/FierPandaBridge.php deleted file mode 100644 index 75a02cf9..00000000 --- a/bridges/FierPandaBridge.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php -class FierPandaBridge extends BridgeAbstract { - - const MAINTAINER = 'snroki'; - const NAME = 'Fier Panda Bridge'; - const URI = 'http://www.fier-panda.fr/'; - const CACHE_TIMEOUT = 21600; // 6h - const DESCRIPTION = 'Returns latest articles from Fier Panda.'; - - public function getIcon() { - return self::URI . 'wp-content/themes/fier-panda/img/favicon.png'; - } - - public function collectData(){ - - $html = getSimpleHTMLDOM(self::URI) - or returnServerError('Could not request Fier Panda.'); - - defaultLinkTo($html, static::URI); - - foreach($html->find('article') as $article) { - - $item = array(); - - $item['uri'] = $article->find('a', 0)->href; - $item['title'] = $article->find('a', 0)->title; - - $this->items[] = $item; - - } - - } -}