1
0
Fork 0
forked from blallo/rss-bridge

[CNETBridge] remove useless member $topicName

Signed-off-by: Pierre Mazière <pierre.maziere@gmx.com>
This commit is contained in:
Pierre Mazière 2016-08-27 11:05:08 +02:00
parent 1de7fb748c
commit 0d36ca21df

View file

@ -1,8 +1,6 @@
<?php <?php
class CNETBridge extends BridgeAbstract { class CNETBridge extends BridgeAbstract {
private $topicName = '';
public function loadMetadatas() { public function loadMetadatas() {
$this->maintainer = 'ORelio'; $this->maintainer = 'ORelio';
@ -43,10 +41,7 @@ class CNETBridge extends BridgeAbstract {
return $article_html; return $article_html;
} }
if (!empty($param['topic']['value'])) $pageUrl = 'http://www.cnet.com/'.(empty($param['topic']['value']) ? '' : 'topics/'.$param['topic']['value'].'/');
$this->topicName = $param['topic']['value'];
$pageUrl = 'http://www.cnet.com/'.(empty($this->topicName) ? '' : 'topics/'.$this->topicName.'/');
$html = $this->getSimpleHTMLDOM($pageUrl) or $this->returnServerError('Could not request CNET: '.$pageUrl); $html = $this->getSimpleHTMLDOM($pageUrl) or $this->returnServerError('Could not request CNET: '.$pageUrl);
$limit = 0; $limit = 0;
@ -78,7 +73,8 @@ class CNETBridge extends BridgeAbstract {
} }
public function getName() { public function getName() {
return 'CNET News Bridge'.(empty($this->topicName) ? '' : ' - '.$this->topicName); $param=$this->parameters[$this->queriedContext];
return 'CNET News Bridge'.(empty($param['topic']['value']) ? '' : ' - '.$this->param['topic']['value']);
} }
public function getCacheDuration() { public function getCacheDuration() {