maintainer = "polopollo"; $this->name = "journaldugeek.com (FR)"; $this->uri = "http://www.journaldugeek.com/"; $this->description = "Returns the 5 newest posts from LeJournalDuGeek (full text)."; } private function LeJournalDuGeekStripCDATA($string) { $string = str_replace('', '', $string); return $string; } private function LeJournalDuGeekExtractContent($url) { $articleHTMLContent = $this->getSimpleHMLDOM($url); $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 . '