forked from blallo/rss-bridge
[Reporterre] 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:
parent
6f248f5973
commit
0cb66e2194
1 changed files with 12 additions and 13 deletions
|
@ -7,12 +7,10 @@ class ReporterreBridge extends BridgeAbstract{
|
|||
$this->name = "Reporterre Bridge";
|
||||
$this->uri = "http://www.reporterre.net/";
|
||||
$this->description = "Returns the newest articles.";
|
||||
$this->update = "2015-04-07";
|
||||
$this->update = "2016-08-04";
|
||||
|
||||
}
|
||||
|
||||
public function collectData(array $param){
|
||||
|
||||
function ExtractContentReporterre($url) {
|
||||
$html2 = $this->file_get_html($url);
|
||||
foreach($html2->find('div[style=text-align:justify]') as $e) {
|
||||
|
@ -23,6 +21,7 @@ class ReporterreBridge extends BridgeAbstract{
|
|||
return $text;
|
||||
}
|
||||
|
||||
public function collectData(array $param){
|
||||
$html = $this->file_get_html('http://www.reporterre.net/spip.php?page=backend') or $this->returnError('Could not request Reporterre.', 404);
|
||||
$limit = 0;
|
||||
|
||||
|
@ -32,7 +31,7 @@ class ReporterreBridge extends BridgeAbstract{
|
|||
$item->title = html_entity_decode($element->find('title', 0)->plaintext);
|
||||
$item->timestamp = strtotime($element->find('dc:date', 0)->plaintext);
|
||||
$item->uri = $element->find('guid', 0)->innertext;
|
||||
$item->content = html_entity_decode(ExtractContentReporterre($item->uri));
|
||||
$item->content = html_entity_decode($this->ExtractContentReporterre($item->uri));
|
||||
$this->items[] = $item;
|
||||
$limit++;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue