diff --git a/bridges/PlanetLibreBridge.php b/bridges/PlanetLibreBridge.php index cccda6dc..b65038ae 100644 --- a/bridges/PlanetLibreBridge.php +++ b/bridges/PlanetLibreBridge.php @@ -7,17 +7,17 @@ class PlanetLibreBridge extends BridgeAbstract{ $this->name = "PlanetLibre"; $this->uri = "http://www.planet-libre.org"; $this->description = "Returns the 5 newest posts from PlanetLibre (full text)"; - $this->update = "2014-05-26"; + $this->update = "2016-08-04"; } - public function collectData(array $param){ - function PlanetLibreExtractContent($url) { $html2 = $this->file_get_html($url); $text = $html2->find('div[class="post-text"]', 0)->innertext; return $text; } + + public function collectData(array $param){ $html = $this->file_get_html('http://www.planet-libre.org/') or $this->returnError('Could not request PlanetLibre.', 404); $limit = 0; foreach($html->find('div.post') as $element) { @@ -26,7 +26,7 @@ class PlanetLibreBridge extends BridgeAbstract{ $item->title = $element->find('h1', 0)->plaintext; $item->uri = $element->find('a', 0)->href; $item->timestamp = strtotime(str_replace('/', '-', $element->find('div[class="post-date"]', 0)->plaintext)); - $item->content = PlanetLibreExtractContent($item->uri); + $item->content = $this->PlanetLibreExtractContent($item->uri); $this->items[] = $item; $limit++; }