mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-08-05 10:34:55 +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:
parent
dea37c8e34
commit
117031bf0f
131 changed files with 548 additions and 411 deletions
|
@ -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++) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue