diff --git a/bridges/MondeDiploBridge.php b/bridges/MondeDiploBridge.php new file mode 100644 index 00000000..f6abe7cf --- /dev/null +++ b/bridges/MondeDiploBridge.php @@ -0,0 +1,50 @@ +returnError('Could not request MondeDiplo. for : ' . $link , 404); + + foreach($html->find('div[class=grid_10 alpha omega laune]') as $element) { + $item = new Item(); + $item->uri = 'http://www.monde-diplomatique.fr'.$element->find('a', 0)->href; + $NumArticle = explode("/", $element->find('a', 0)->href); + $item->title = $element->find('h3', 0)->plaintext; + $item->content = $element->find('div[class=crayon article-intro-'.$NumArticle[4].' intro]', 0)->plaintext; + $this->items[] = $item; + } + + foreach($html->find('div.titraille') as $element) { + $item = new Item(); + $item->uri = 'http://www.monde-diplomatique.fr'.$element->find('a', 0)->href; + $item->title = $element->find('h3', 0)->plaintext; + $item->content = $element->find('div.dates_auteurs', 0)->plaintext; + $this->items[] = $item; + } + } + + public function getName(){ + return 'Monde Diplomatique'; + } + + public function getURI(){ + return 'http://www.monde-diplomatique.fr'; + } + + public function getCacheDuration(){ + return 21600; // 6 hours + } +} +