find('div.entry-thumbnail', 0)->innertext; $text = $text.$articleHTMLContent->find('div.entry-excerpt', 0)->innertext; $text = $text.$articleHTMLContent->find('div.entry-content', 0)->innertext; foreach($articleHTMLContent->find('pagespeed_iframe') as $element) { $text = $text.'

link to a iframe (could be a video): '.$element->src.'


'; } $text = strip_tags($text, '

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