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