', '', $string); return $string; } function LeJournalDuGeekExtractContent($url) { $articleHTMLContent = file_get_html($url); $text = $text.$articleHTMLContent->find('div.post-content', 0)->innertext; foreach($articleHTMLContent->find('a.more') as $element) { if ($element->innertext == "Source") { $text = $text.'

Source : '.$element->href.'

'; break; } } foreach($articleHTMLContent->find('iframe') as $element) { if (preg_match("/youtube/i", $element->src)) { $text = $text.'// An IFRAME to Youtube was included in the article: '.$element->src.'
'; } } $text = strip_tags($text, '



  • '); return $text; } $rssFeed = file_get_html('http://www.journaldugeek.com/rss') or $this->returnError('Could not request http://www.journaldugeek.com/rss', 404); $limit = 0; foreach($rssFeed->find('item') as $element) { if($limit < 5) { $item = new \Item(); $item->title = LeJournalDuGeekStripCDATA($element->find('title', 0)->innertext); $item->uri = LeJournalDuGeekStripCDATA($element->find('guid', 0)->plaintext); $item->timestamp = strtotime($element->find('pubDate', 0)->plaintext); $item->content = LeJournalDuGeekExtractContent($item->uri); $this->items[] = $item; $limit++; } } } public function getName(){ return 'LeJournalDuGeek'; } public function getURI(){ return 'http://www.journaldugeek.com/'; } public function getCacheDuration(){ return 1800; // 30min } }