[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:
Dag 2022-03-25 20:59:23 +01:00
parent 364cc8d0b8
commit 33da1476c9
1 changed files with 14 additions and 1 deletions

View File

@ -7,8 +7,21 @@ class AcrimedBridge extends FeedExpander {
const CACHE_TIMEOUT = 4800; //2hours
const DESCRIPTION = 'Returns the newest articles';
const PARAMETERS = [
[
'limit' => [
'name' => 'limit',
'type' => 'number',
'defaultValue' => -1,
]
]
];
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){