mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-08-27 10:04:53 +02:00
[core] store parameters values in BridgeAbstract::parameters
This way, any BridgeAbstract method can now have access to these values, no only collectData Signed-off-by: Pierre Mazière <pierre.maziere@gmx.com>
This commit is contained in:
@@ -21,12 +21,13 @@ class HDWallpapersBridge extends BridgeAbstract {
|
||||
);
|
||||
}
|
||||
|
||||
public function collectData(array $param){
|
||||
public function collectData(){
|
||||
$param=$this->parameters[$this->queriedContext];
|
||||
$html = '';
|
||||
$baseUri = 'http://www.hdwallpapers.in';
|
||||
|
||||
$this->category = $param['c'] ?: 'latest_wallpapers'; // Latest default
|
||||
$this->resolution = $param['r'] ?: '1920x1200'; // Wide wallpaper default
|
||||
$this->category = $param['c']['value'] ?: 'latest_wallpapers'; // Latest default
|
||||
$this->resolution = $param['r']['value'] ?: '1920x1200'; // Wide wallpaper default
|
||||
|
||||
$category = $this->category;
|
||||
if (strrpos($category, 'wallpapers') !== strlen($category)-strlen('wallpapers')) {
|
||||
@@ -34,7 +35,7 @@ class HDWallpapersBridge extends BridgeAbstract {
|
||||
}
|
||||
|
||||
$num = 0;
|
||||
$max = $param['m'] ?: 14;
|
||||
$max = $param['m']['value'] ?: 14;
|
||||
$lastpage = 1;
|
||||
|
||||
for ($page = 1; $page <= $lastpage; $page++) {
|
||||
|
Reference in New Issue
Block a user