1
0
Fork 0
forked from blallo/rss-bridge

[Reporterre] Fix indentation and remove empty lines

This commit is contained in:
logmanoriginal 2016-08-04 12:34:40 +02:00
parent d6ff40c527
commit 6162164bd4

View file

@ -2,20 +2,20 @@
class ReporterreBridge extends BridgeAbstract{ class ReporterreBridge extends BridgeAbstract{
public function loadMetadatas() { public function loadMetadatas() {
$this->maintainer = "nyutag"; $this->maintainer = "nyutag";
$this->name = "Reporterre Bridge"; $this->name = "Reporterre Bridge";
$this->uri = "http://www.reporterre.net/"; $this->uri = "http://www.reporterre.net/";
$this->description = "Returns the newest articles."; $this->description = "Returns the newest articles.";
$this->update = "2016-08-04"; $this->update = "2016-08-04";
} }
function ExtractContentReporterre($url) { function ExtractContentReporterre($url) {
$html2 = $this->file_get_html($url); $html2 = $this->file_get_html($url);
foreach($html2->find('div[style=text-align:justify]') as $e) { foreach($html2->find('div[style=text-align:justify]') as $e) {
$text = $e->outertext; $text = $e->outertext;
} }
$html2->clear(); $html2->clear();
unset ($html2); unset ($html2);
@ -23,7 +23,6 @@ class ReporterreBridge extends BridgeAbstract{
$text = preg_replace('/(href|src)(\=[\"\'])(?!http)([^"\']+)/ims', "$1$2" . $this->getURI() . "$3", $text); $text = preg_replace('/(href|src)(\=[\"\'])(?!http)([^"\']+)/ims', "$1$2" . $this->getURI() . "$3", $text);
$text = strip_tags($text, '<p><br><a><img>'); $text = strip_tags($text, '<p><br><a><img>');
return $text; return $text;
} }
@ -42,7 +41,6 @@ class ReporterreBridge extends BridgeAbstract{
$limit++; $limit++;
} }
} }
} }
public function getName(){ public function getName(){
@ -55,6 +53,5 @@ class ReporterreBridge extends BridgeAbstract{
public function getCacheDuration(){ public function getCacheDuration(){
return 3600; // 1 hours return 3600; // 1 hours
// return 0;
} }
} }