[PlanetLibre] Change nested function to member function

This fixes error "Using $this when not in object context"

Nested functions are not part of the object and therefore don't have
access to the object instance $this!
This commit is contained in:
logmanoriginal 2016-08-04 12:02:27 +02:00
parent 6f248f5973
commit 77f326e377

View file

@ -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++;
}