forked from blallo/rss-bridge
de1b39c8e5
if a bridge needs to modify some of the data that were initialized there, ::__construct() should be used instead. Signed-off-by: Pierre Mazière <pierre.maziere@gmx.com>
25 lines
906 B
PHP
25 lines
906 B
PHP
<?php
|
|
class MondeDiploBridge extends BridgeAbstract{
|
|
|
|
public $maintainer = "Pitchoule";
|
|
public $name = 'Monde Diplomatique';
|
|
public $uri = 'http://www.monde-diplomatique.fr';
|
|
public $description = "Returns most recent results from MondeDiplo.";
|
|
|
|
public function collectData(){
|
|
$html = $this->getSimpleHTMLDOM($this->uri) or $this->returnServerError('Could not request MondeDiplo. for : ' . $link);
|
|
|
|
foreach($html->find('div.unarticle') as $article) {
|
|
$element = $article->parent();
|
|
$item = array();
|
|
$item['uri'] = $this->uri . $element->href;
|
|
$item['title'] = $element->find('h3', 0)->plaintext;
|
|
$item['content'] = $element->find('div.dates_auteurs', 0)->plaintext . '<br>' . strstr($element->find('div', 0)->plaintext, $element->find('div.dates_auteurs', 0)->plaintext, true);
|
|
$this->items[] = $item;
|
|
}
|
|
}
|
|
|
|
public function getCacheDuration(){
|
|
return 21600; // 6 hours
|
|
}
|
|
}
|