mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-08-12 19:44:12 +02:00
[bridges] use constants instead of variable members
Signed-off-by: Pierre Mazière <pierre.maziere@gmx.com>
This commit is contained in:
@@ -1,19 +1,19 @@
|
||||
<?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.";
|
||||
const MAINTAINER = "Pitchoule";
|
||||
const NAME = 'Monde Diplomatique';
|
||||
const URI = 'http://www.monde-diplomatique.fr/';
|
||||
const DESCRIPTION = "Returns most recent results from MondeDiplo.";
|
||||
|
||||
public function collectData(){
|
||||
$html = $this->getSimpleHTMLDOM($this->uri)
|
||||
or $this->returnServerError('Could not request MondeDiplo. for : ' . $this->uri);
|
||||
$html = $this->getSimpleHTMLDOM(self::URI)
|
||||
or $this->returnServerError('Could not request MondeDiplo. for : ' . self::URI);
|
||||
|
||||
foreach($html->find('div.unarticle') as $article) {
|
||||
$element = $article->parent();
|
||||
$item = array();
|
||||
$item['uri'] = $this->uri . $element->href;
|
||||
$item['uri'] = self::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;
|
||||
|
Reference in New Issue
Block a user