forked from blallo/rss-bridge
Fix indentation and remove empty lines
This commit is contained in:
parent
1d58809676
commit
924e123ba6
1 changed files with 24 additions and 26 deletions
|
@ -2,13 +2,11 @@
|
||||||
class MsnMondeBridge extends BridgeAbstract{
|
class MsnMondeBridge extends BridgeAbstract{
|
||||||
|
|
||||||
public function loadMetadatas() {
|
public function loadMetadatas() {
|
||||||
|
|
||||||
$this->maintainer = "kranack";
|
$this->maintainer = "kranack";
|
||||||
$this->name = "MSN Actu Monde";
|
$this->name = "MSN Actu Monde";
|
||||||
$this->uri = "http://www.msn.com/fr-fr/actualite/monde";
|
$this->uri = "http://www.msn.com/fr-fr/actualite/monde";
|
||||||
$this->description = "Returns the 10 newest posts from MSN Actualités (full text)";
|
$this->description = "Returns the 10 newest posts from MSN Actualités (full text)";
|
||||||
$this->update = "2015-01-30";
|
$this->update = "2016-08-03";
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function MsnMondeExtractContent($url, &$item) {
|
function MsnMondeExtractContent($url, &$item) {
|
||||||
|
@ -17,30 +15,30 @@ class MsnMondeBridge extends BridgeAbstract{
|
||||||
$item->timestamp = strtotime($html2->find('.authorinfo-txt', 0)->find('time', 0)->datetime);
|
$item->timestamp = strtotime($html2->find('.authorinfo-txt', 0)->find('time', 0)->datetime);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function collectData(array $param){
|
public function collectData(array $param){
|
||||||
$html = $this->file_get_html('http://www.msn.com/fr-fr/actualite/monde') or $this->returnError('Could not request MsnMonde.', 404);
|
$html = $this->file_get_html($this->getURI()) or $this->returnError('Could not request MsnMonde.', 404);
|
||||||
$limit = 0;
|
$limit = 0;
|
||||||
foreach($html->find('.smalla') as $article) {
|
foreach($html->find('.smalla') as $article) {
|
||||||
if($limit < 10) {
|
if($limit < 10) {
|
||||||
$item = new \Item();
|
$item = new \Item();
|
||||||
$item->title = utf8_decode($article->find('h4', 0)->innertext);
|
$item->title = utf8_decode($article->find('h4', 0)->innertext);
|
||||||
$item->uri = "http://www.msn.com" . utf8_decode($article->find('a', 0)->href);
|
$item->uri = "http://www.msn.com" . utf8_decode($article->find('a', 0)->href);
|
||||||
$this->MsnMondeExtractContent($item->uri, $item);
|
$this->MsnMondeExtractContent($item->uri, $item);
|
||||||
$this->items[] = $item;
|
$this->items[] = $item;
|
||||||
$limit++;
|
$limit++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getName(){
|
public function getName(){
|
||||||
return 'MSN Actu Monde';
|
return 'MSN Actu Monde';
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getURI(){
|
public function getURI(){
|
||||||
return 'http://www.msn.com/fr-fr/actualite/monde';
|
return 'http://www.msn.com/fr-fr/actualite/monde';
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getCacheDuration(){
|
public function getCacheDuration(){
|
||||||
return 3600; // 1 hour
|
return 3600; // 1 hour
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue