mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-03-11 19:19:43 +01:00
[AcrimedBridge] feat: add limit option
This change preserves the prior behavior of fetching all items. This particular feed always has exactly 10 items.
This commit is contained in:
parent
364cc8d0b8
commit
33da1476c9
@ -7,8 +7,21 @@ class AcrimedBridge extends FeedExpander {
|
|||||||
const CACHE_TIMEOUT = 4800; //2hours
|
const CACHE_TIMEOUT = 4800; //2hours
|
||||||
const DESCRIPTION = 'Returns the newest articles';
|
const DESCRIPTION = 'Returns the newest articles';
|
||||||
|
|
||||||
|
const PARAMETERS = [
|
||||||
|
[
|
||||||
|
'limit' => [
|
||||||
|
'name' => 'limit',
|
||||||
|
'type' => 'number',
|
||||||
|
'defaultValue' => -1,
|
||||||
|
]
|
||||||
|
]
|
||||||
|
];
|
||||||
|
|
||||||
public function collectData(){
|
public function collectData(){
|
||||||
$this->collectExpandableDatas(static::URI . 'spip.php?page=backend');
|
$this->collectExpandableDatas(
|
||||||
|
static::URI . 'spip.php?page=backend',
|
||||||
|
$this->getInput('limit')
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
protected function parseItem($newsItem){
|
protected function parseItem($newsItem){
|
||||||
|
Loading…
x
Reference in New Issue
Block a user